Monday, May 18, 2020

Application of Linear Data Structures

 ----------------------------------------------------------------------------------------------------------
There are several applications of Linear Data Structures. Some of the applications are listed below:
  1. Applications of array
    1. Representation of Polynomial Expression
  2. Applications of Linked List
    1. Representation of Polynomial Expression 
  3. Applications of Stack
    1. Quick Sort
    2. Tree Traversal
      1. In-Order Traversal
      2. Pre-Order Traversal
      3. Post-Order Traversal
    3. Recursion 
    4. graph Search (DFS)
  4.  Application of Queue
    1. Graph Search (BFS)

  5.