Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 433 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 433 Bytes

Setup

How to use

  #include "Sorting_Algorithms.h"
  //do stuff
  std::vector<int> data(100);
  //do stuff
  sorting::combsort(data.begin(),data.end());
  //optional with custom compare
  //sorting::combsort(data.begin(),data.end(),[](const int & a, const int & b){ return a > b;});

This library is used in my other project SortVisualization