DSA/sorting/README.md

32 lines
743 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)
### C#
1. [Bubble Sort](csharp/bubble-sort.cs)
2. [Insertion Sort](csharp/insertion-sort.cs)
3. [Selection Sort](csharp/selection-sort.cs)
### Python
1. [Bubble Sort](python/bubble-sort.py)
2. [Insertion Sort](python/insertion-sort.py)
2. [Selection Sort](python/selection-sort.py)
### Java
1. [Bubble Sort](java/bubble-sort.java)
2. [Insertion Sort](java/insertion-sort.java)
3. [Selection Sort](java/selection-sort.java)
### JavaScript
1. [Bubble Sort](js/bubble-sort.js)
2. [Insertion Sort](js/insertion-sort.js)
3. [Selection Sort](js/selection-sort.js)