Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 301 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 301 Bytes

Sort

implementation of sorting algorithms in C++ [ developing ]

List of Algorithm

  • Bubble Sort
  • Selection Sort
  • Insertion Sort
  • Quick Sort
  • Shell Sort
  • Counting Sort

Run a Simple Demo

Copy files in ./src to ./demo, then use "g++ main.cc -o output" to comple and "./output" to run it.