Sunday, 05 20th

Last update09:44:47 AM

Login With Facebook

Combinestudy

CS301 Fall 2011 4th Assignment

Rate this item
(0 votes)

Question No: 1                                                                                               Marks: 20

 Consider the following sequence:

computer revolutionized the world$

  1. a)Draw frequency                                                                                                           3 marks
  2. b)Create a Huffman8 marks

Spring 2012 CS301 1st Assignment

Rate this item
(0 votes)

You need to write a C++ Program which contains the following two classes and main function.

1.    Player Class (means Node Class): This class should define three private variables for Player Name, Player Score and Next pointer, this class should also define Constructor, Getter and Setter functions for these variable as inline functions (means define these functions within class body).

CS301 Fall 2011 2nd Assignment

Rate this item
(2 votes)

Write a C++ program to evaluate postfix expressions. Your program should take postfix expression as an input, process it with the help of stack and display the result after performing required calculations.

 Only following Binary operators are allowed for this program:

+, -, *, /, ^ [addition, subtraction, multiplication, division, exponentiation]

CS301 First Assignment Fall2011

Rate this item
(1 Vote)

It is required to make a list of students registered in Data Structures course. To achieve this functionality, develop a C++ program and use linked list to store student ids and names.

Each node in the linked list will contain three items: student id, student name, pointer to next node.