Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. T(n) = T(n/c) + b where c is a constant > 1, b is any constant
  2.  
  3. T(n) = T(n/c) + T(n/d) + bn where c and d are constants > 1, b is any constant
  4.  
  5. T(n) = T(n - c) + bn where c, b are constants > 1
  6.  
  7. T(n) = T(n/c) + T(n/d) + O(n) where c and d are constants > 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement