Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 414 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 414 Bytes

Data Structures and Sort Algorithms

This repo includes implementation of common used data structures and sorting algorithms in C programming language.

List of data structures

  • Stack
  • Queue
  • Linked List
  • Dynamic Array
  • Heap
  • Hash Table
  • Binary Search Tree
  • AVL Tree
  • Threaded Binary Search Tree

List of Sort Algorithms

  • Bubble Sort
  • Insertion Sort
  • Selection Sort
  • Merge Sort
  • Quick Sort