This repositorie constains a solution of Order algorithms like.
- Bubble sort
- Insertion sort
- Selection sort
- Quick sort
# | Files | Description |
---|---|---|
1 | README.md | Description foder |
a | 0-bubble_sort.c | Contains the algorithms of bubble sort. |
a | 0-O | Contains Big (O) in all three cases, the best, normal and worst of the algorithm Bubble Sort |
b | 1-insertion_sort_list.c | Contains the algorithms of insertion sort. |
b | 1-O | Contains Big (O) in all three cases, the best, normal and worst of the algorithm insertion Sort |
c | 2-selection_sort.c | Contains the algorithms of selection sort. |
c | 2-O | Contains Big (O) in all three cases, the best, normal and worst of the algorithm selection Sort |
d | 3-quick_sort.c | Contains the algorithms of quick sort. |
d | 2-O | Contains Big (O) in all three cases, the best, normal and worst of the algorithm quick Sort |