17 lines
284 B
Markdown
17 lines
284 B
Markdown
# Sorting algorithms
|
|
|
|
### C or C++
|
|
|
|
1. [Bubble Sort](c-or-cpp/bubble-sort.cpp)
|
|
2. [Insertion Sort](c-or-cpp/insertion-sort.cpp)
|
|
3. [Selection Sort](c-or-cpp/selection-sort.cpp)
|
|
|
|
### Python
|
|
|
|
1. [Bubble Sort](python/bubble-sort.py)
|
|
|
|
### JavaScript
|
|
|
|
1. [Bubble Sort](js/bubble-sort.js)
|
|
|