Intoduction To Data Structures




My first blog.
let us discuss about DATA STRUCTURES

Data structure is just like a container to store data items.Initially programmers started with an array to store data items, but it holds data of the same data type and the memory allocation has to be given initially before execution. To overcome this they introduced dynamic data type in which memory allocation of data  can be allocated at any point of execution and structure data items can be stored. Some of the data structures are
  • STACK
  • QUEUE
  • CIRCULAR QUEUE
  • LINKED LIST
  • CIRCULAR LINKED LIST
  • DOUBLY LINKED LIST
  • HEAP
  • HASHING 
  Data structures also involve about the time complexities to insert, delete, search an item.                                              



                                              


                   
First