Module 1,2,3 Data Structures 1
Module 1,2,3 Data Structures 1
MODULE -2
1. Define Tree. Explain the tree traversals with algorithms and examples.
2. Construct an expression tree for the expression (a + b * c)
+((d * e + 1) * g). Give the outputs when you apply preorder, inorder and
postorder traversals.
3. Explain binary search tree ADT in detail.
4. Explain Topological sort.
5. Explain b tree and B+ tree ADT in detail.
6. Explain Heap tree ADT in detail.
7. Explain threaded binary tree ADT in detail.
8. Explain the various representation of graph with example in
detail?
9. Define topological sort? Explain with an example?
10.Write and explain the prim’s algorithm and depth first search algorithm
11.Explain the depth first search algorithm.
12.Explain the breadth first search algorithm
MODULE -3