Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. ## Iteration
  2. * print a linked list in reverse order
  3. factorial
  4. any loop based problem
  5.  
  6. ## Breaking into sub problems
  7. * towers of Hanoi
  8. * fibonacci
  9.  
  10. ## Selection
  11. * knapsack problem
  12. * word break
  13. * phone spell
  14. * N Queens
  15.  
  16. ## Ordering (permutations)
  17. * find all permutatioons of inputs
  18. * find all n digit numbers whose digits sum to a specific value
  19. * word squares
  20.  
  21. ## Divide and Conquer
  22. * searching a sorting in trees
  23. * merge sort
  24. * generate all BSTs for a set of terms
  25. * find all valid parentheses
  26.  
  27. ## Depth First Seach
  28. * search in a tree
  29. * probability of a knight on a chessboard
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement