Data Structure Course using C Language

Hello guys, welcome to Data Structure Course using C Language. Here you will find all the posts of the data structure.

  1. Arrays and Lists
  2. Stack and Queue
  3. Tree
    • Binary Tree
      • Basic Terminology
      • Binary Tree Representation
      • Complete Binary Tree
      • Extended Binary Tree
      • Binary Tree Traversals
    • Binary Search Trees
      • Binary Search Tree
      • AVL Trees
      • B-Trees
  4. Graphs
    • Graphs: Basic Terminology and Representation
    • Graphs and MultiGraphs
    • Directed Graphs
    • Adjacency Matrices
    • Graph Traversal
    • Spanning Trees
    • Minimum Cost Spanning Trees
  5. Searching, Sorting, and File Structures
  6. Experiments
    1. Write a Program to implement the array operations
    2. Write a program to implement the stack and its operations
    3. WAP to implement Stack application: Tower of Hanoi
    4. WAP to implement Queue and Its operations
    5. WAP to implement the circular queue and its operation
    6. WAP to implement the dequeue and its operation
    7. WAP to implement the Linked list and its operation
    8. WAP to implement the BST
    9. WAP to implement the BST insertion process
    10. WAP to implement the Insertion sort
    11. WAP to implement the Bubble sort
    12. WAP to implement the Quick sort
    13. WAP to implement the Merge sort
    14. WAP to implement the Heap sort
    15. WAP to implement the Graph