Data Structures IMP
UNIT I LINEAR DATA STRUCTURES- LIST Abstract Data Type (ADT) - List ADT- Arrays based Implementation-linked list implementation-singly linked lists-circularly linked lists-doubly linked list-Application of list-polynomial manipulation-all operations (insertion, deletion, merge, traversal). S. No. Question 1 What is a data structure? ● A data structure is a method for organizing and storing data which would allow efficient data retrieval and usage. ● A data structure is a way of organizing data that considers not only the items stored, but also their relationships to each other. 2 Why do we need data structures? ● Data structures allow us to achieve an important goal: component r...