Studying ‘Data Structure’

Definitions of Data Structures
  • In computer science, a data structure is a particular way of organizing data in a computer so that it can be used efficiently.
Types of data structures
  • Abstract data structures
    • associative array, map, symbol table, or dictionary
    • list
    • stack
    • queue
    • deque(doubly ended queue)
    • priority queue
    • set
  • arrays
  • linked lists
    • one-way linked lists
    • doubly linked lists
  • trees
    • binary trees
      • binary search trees, BST
    • heap
    • spanning trees
  • graphs
References

Leave a Reply

Your email address will not be published. Required fields are marked *