Wednesday, July 17, 2013

CS9212 DATA STRUCTURES AND ALGORITHMS Question Paper

M.E/M.Tech DEGREE EXAMINATION, JANUARY 2010
First Semester
Computer Science and Engineering
CS9212 – DATA STRUCTURES AND ALGORITHMS
(Common to M.Tech- Information Technology)
(Regulation 2009)
Time: Three hours Maximum: 100 Marks
Answer all the questions
Part A – (10*2=20 Marks)
1. Consider the two functions f (n) =3n^2+5 and g (n) =n^2. Prove with graphical representation that asymptotic upper bound of f (n) is g (n)?
2. Solve the recurrence equation of Merge sort to show that the worst-case complexity is
O (nlogn)?
3. Define Null Path length? What is the role of NPL in Leftist Heap?
4. Is the height of every tree in a Binomial heap that has n elements O (log n)? If not what is the worst-case height as a function of n?
5. What is the maximum and minimum height of a binary tree with 28 nodes? Mention the suitable tree traversal to sort the values in increasing order?
6. Compare the worst case height of a red-black tree with n nodes and that of an AVL tree with the same number of nodes?
7. Why it is necessary to have the auxiliary array billow: high in function Merge? Give an example that shows why-in-place merging is insufficient?
8. Find an optimal placement for 13 programs on three tapes T0, T1 and T2. Where the programs are of lengths 12,5.8,3,2,7,5.1,8.2,4,3,11,10, and 6.
9. Give an example of a set of knapsack instances for which |s^i| = 2^I, 0<i<n. Your set should include one instance for each n.
10. Present a backtracking algorithm for solving the knapsack optimization problem using the variable tuple size formulation.
Part B – (5*16=80 Marks)
11. (a)(i)Discuss Strassen’s matrix multiplication as well as classical O (n^2) one. Determine when Strassen’s method outperforms the classical one. (8)
(ii)Code the divide and conquer algorithm DCHull () in C++ and last it in appropriate data. (8)
(Or)
(b)Code and distinguish the JS and FJS functions for job sequencing with suitable data. Analyze the complexities of these two functions. (16)
12. (a)Find the minimum cost path from S to T in the multistage graph of the given figure. Do this first using forward approach and then using backward approach. (16)
(Or)
(b)Give an n x n chess board, a knight is placed on an arbitrary square with coordinates (x, y). The problem is to determine (n^2-1) knight moves such that every square of the board is visited once if such a sequence of moves exists. Write a C++ program to solve this problem. (16)


M.E/M.Tech DEGREE EXAMINATION, MAY/JUNE 2010
First Semester
Computer Science and Engineering
CS9212 – DATA STRUCTURES AND ALGORITHMS
(Common to M.Tech- Information Technology)
(Regulation 2009)
Time: Three hours Maximum: 100 Marks
Answer all the questions
Part A – (10*2=20 Marks)
1. Define big Oh notation.
2. Give two examples for NP hard problem.
3. Give an example of Fibonacci heap
4. Define binomial heap.
5. Define AVL trees.
6. What is the purpose of Red black trees?
7. What is the run time complexity of Quick Sort?
8. Define the advantages of greedy algorithms?
9. What are the advantages of dynamic programming?
10. List two example problems which can be solved by back tracking.
Part B – (5*16=80 Marks)
11. (a)(i)Write algorithm to perform in order and preorder traversal of binary tree. (8)
(ii)Explain about recurrence equation with an example. (8)
(Or)
(b)(i)Explain the principle of Amortized Analysis. (10)
(ii)Write algorithm to insert a node in the beginning of a list. (6)
12. (a)Write algorithm to construct Fibonacci heap with suitable example. (16)
(Or)
(b) Write algorithm to construct Binomial heap with suitable example. (16)
13. (a)(i)Construct a B-tree to insert the following(order of the tree is 3) 5,25,3,75,4,43,6,8,10
(ii)What are the properties of Red black trees? (4)
(Or)
(b)(i)What is the need for splay trees? Give an example. (8)
(ii)Write algorithm to construct tries. (8)
14. (a)(i)Write algorithm for Quick Sort. (8)
(ii)Write intermediate steps to perform Quick Sort for the following: 5,25,4,33,6,9,47,50,2. (8)
(Or)
(b)Write algorithm for Tree Vertex Splitting. (16)
15. (a)Describe how Eight Queen’s problem can be solved using back tracking. Write the algorithm. (16)
(Or)
(b)State the Knapsack Problem and explain how it can be solved using branch and bound algorithm. (16)

No comments:

Post a Comment