Differentiate between data types and data structures.
[3 marks]Answer the followings: (1) Give examples of Linear and Non-Linear Data Structures. (2) What do you mean by Abstract Data Types?
[4 marks]Discuss and write a program to implement queue functions using arrays.
[7 marks]Distinguish between stack and queue.
[3 marks]What is top of stack? Why stack is called LIFO list?
[4 marks]What is a circular queue? How do you check the queue full condition? Write an algorithm to count the nodes in a circular queue.
[7 marks]Explain creation, insertion and deletion of doubly linked list with example.
[7 marks]What are binary trees? Mention different types of binary trees with example.
[3 marks]What is a graph? Explain various representations of graphs.
[4 marks]Write an algorithm to add a node into a binary search tree.
[7 marks]What is B -tree of order m? Draw a B-tree of order 3.
[3 marks]Construct a binary tree having the following traversal sequences: Preorder traversal A B C D E F G H I Inorder traversal B C A E D G H F I
[4 marks]Discuss algorithm of Breadth First Search (BFS) traversal for a Graph. Explain with an example.
[7 marks]Explain Sequential file organizations and list its advantages and disadvantages.
[3 marks]How access of record is performed in multi key file organization?1
[4 marks]Describe various collision resolution techniques in hashing.
[7 marks]Explain indexed sequential file structure.
[3 marks]Explain minimal spanning tree.
[4 marks]What is hashing? What are the qualities of a good hash function? Explain any two hash functions in detail.
[7 marks]Define topological sort?
[3 marks]Compare sequential searching with binary searching in detail.
[4 marks]Examine the algorithm for Insertion sort and sort the following array: 77, 33, 44, 11, 88, 22, 66, 55
[7 marks]What do you mean by internal and external sorting?
[3 marks]Write an algorithm for quick sort.
[4 marks]What is Binary Search Tree? Construct a binary search tree for the following elements 21, 16, 24, 18, 22, 25, 26, 27, 29, 332
[7 marks]