Skip to content

Commit

Permalink
update algo assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
KenN7 committed Sep 14, 2023
1 parent cce0313 commit ef016c7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions content/algo/session1.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,8 @@ a = 2,b = 2,d = 1, bd = 2 = a, case 1, $O(n \log n)$
- $T(n) = 4T(n/2) + n^2$
- $T(n) = 16T(n/4) + n$
- $T(n) = 7T(n/3) + n^2$

## Divide and conquer

- Implement peak search
- Implement merge sort

0 comments on commit ef016c7

Please sign in to comment.