Guest User

Untitled

a guest
Feb 18th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. 1. Even or Odd - constant (O(1))
  2.  
  3. 2. Are You Here - polynomial (O(n^2))
  4.  
  5. 3. Doubler - linear (O(n))
  6.  
  7. 4. Naive Search - linear (O(n))
  8.  
  9. 5. Creating Pairs - polynomial (O(n^2))
  10.  
  11. 6. Computing Fib - linear (O(n))
  12.  
  13. 7. An Efficent Search - logarithmic (O(log n))
  14.  
  15. 8. Random Element - constant (n(1))
  16.  
  17. 9. Is it Prime - linear (O(n))
Add Comment
Please, Sign In to add comment