We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0488a8 commit a5a8c02Copy full SHA for a5a8c02
README.md
@@ -12,6 +12,8 @@ The project is built using [React](https://reactjs.org/) and [Vite](https://vite
12
### Sorting Algorithms
13
1. **Bubble Sort**: Watch as the simplest sorting algorithm compares and swaps elements to sort the array.
14
2. **Quick Sort**: See the divide-and-conquer approach in action, partitioning arrays and recursively sorting the partitions.
15
+3. **Insertion Sort**: This approach inserts each element into an interatively produced sorted array.
16
+4. **Merge Sort**: A recursive divide-and-conquer algorithm that iteratively merges and sorts larger and larger sub-arrays.
17
18
### Search Algorithms (Coming Soon)
19
- **Linear Search**
0 commit comments