

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
SEE_2CSOE52_DS_Question Paper SEE_2CSOE52_DS_Question Paper SEE_2CSOE52_DS_Question Paper
Typology: Exams
1 / 2
This page cannot be seen from the preview
Don't miss anything!
Page 1 of 2
B. Tech., Semester– VI (Open Elective) 2CSOE52 – DATA STRUCTURES Time: 1.5 Hour Max Marks: 40 Instructions: 1. Attempt all questions.
CO Consider a two dimensional array A[2:9, - 4:7, 4:12]. The base address of the array is 2000 and the memory required by each elements is 2 bytes. Find the address of the location A[4, 2, 9] using both the row and column major order. Show all the intermediate steps.
Q- 2 Answer the following. [10] A) CO How an insert operations takes place in a circular doubly linked list. Write an appropriate algorithmic steps to perform insertion at end in circular doubly linked list.
CO Convert the following infix expression into postfix expression using any of the known methods. Show all the intermediate steps in table format. (A - B) *(C – D) / (E + F) * ( G + H )
Q- 3 Answer the following. [10] A) CO The preorder traversing sequence of a Binary Search Tree (BST) is given as { 18 , 10, 5, 1, 7, 15, 30, 25, 35, 32, 38 }, construct the binary tree from above sequence. Also give the postorder traversing sequence of constructed binary tree.
CO Construct an AVL Tree by inserting the elements in the below given order : 99, 88, 77, 66, 55, 44, 33, 22, 10. Show all the intermediate steps.
CO Construct Minimum Spanning Tree(MST) from below given graph using Kruskal’s algorithm. Show all the intermediate steps of MST construction.
Page 2 of 2 Q- 4 Answer the following. [10] A) CO The keys 19 , 25 , 11, 1, 3, 4, 32 , 15 are inserted into an initially empty hash table of length 9 with hash function h(k) = k% 9 and collision resolution technique linear probing. What will be the resultant hash table? Show all the intermediate steps.
CO Write an efficient algorithms to perform insertion and deletion operation on priority queue using linked list.
Identify a sorting technique that sorts the given set of data without comparing the elements. Sort the following data in ascending order using the identified sorting technique. Show all the intermediate steps. 4244, 1234, 95, 987, 345,333, 5678, 11, 473, 182, 9, 3 6