Guest User

Untitled

a guest
May 3rd, 2016
50
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) ------> n
  2. | /
  3. log n T(n/2) T(n/2) ------>2(n/2)=n
  4. | / /
  5. | T(n/4) T(n/4) T(n/4) T(n/4)--->4(n/4)=n
Add Comment
Please, Sign In to add comment