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

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.

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]