Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 477 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 477 Bytes

SortingAlgorithms

Implementing Sorting Algorithms with C Programming Language.

Counting comparions and swaps, analyzing for already sorted(ascending and descending) arrays.

Note: Using big sized array may cause memory allocation and segmentation fault errors. Because some algorithms use recursion and these codes are not written for production. Its all about learning.

List of Algorithms

  • Bubble
  • Selection
  • Insertion
  • Quick
  • Merge
  • Radix