Portfolio project showcasing algorithms implemented in multiple languages as a learning resource.
| Done | Algorithm Name | Time Complexity | Languages |
|---|---|---|---|
| ✅ | Linear Search | O(n) | |
| ✅ | Binary Search | O(log n) |
| Done | Algorithm Name | Time Complexity | Languages |
|---|---|---|---|
| ❌ | Bubble Sort | O(n²) | x |
| ❌ | Selection Sort | O(n²) | x |
| ❌ | Insertion Sort | O(n²) | x |
| ❌ | Merge Sort | O(n log n) | x |
| ❌ | Quick Sort | O(n log n) avg, O(n²) worst | x |
| ❌ | Heap Sort | O(n log n) | x |