dsalglib  1.0.0
dsalglib is a ready to use data structures and algorithms library written in C++ . Object Oriented Template implementations are written.
sort.h
Go to the documentation of this file.
1 //
2 // Created by moghya_s on 10/2/2016.
3 //
4 
5 #ifndef DSALGLIB_SORT_H
6 #define DSALGLIB_SORT_H
7 
8 #include "bubblesort.h"
9 #include "heapsort.h"
10 #include "quicksort.h"
11 #include "insertionsort.h"
12 #include "mergesort.h"
13 #include "shellsort.h"
14 #include "selectionsort.h"
15 
16 #endif //DSALGLIB_SORT_H