Thanks to visit codestin.com
Credit goes to step-wise-omega.vercel.app

Binary Search
O(log n)O(1)
Divide and Conquer Algorithm
Binary Search illustration

Divide and Conquer Algorithm

Merge Sort
O(n log n)O(n)
Divide and Conquer Algorithm
Merge Sort illustration

Divide and Conquer Algorithm

Quick Sort
O(n log n)O(log n)
Divide and Conquer Algorithm
Quick Sort illustration

Divide and Conquer Algorithm