Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 1.33 KB

File metadata and controls

26 lines (18 loc) · 1.33 KB

Algorithms

Portfolio project showcasing algorithms implemented in multiple languages as a learning resource.

🚧 In progress

To Do

1️⃣ Searching Algorithms

Done Algorithm Name Time Complexity Languages
Linear Search O(n) Python C
Binary Search O(log n) Python

2️⃣ Sorting Algorithms

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