Advertisement
Guest User

Untitled

a guest
May 30th, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. ##Data Structures and Algorithms for Ruby Newbies
  2.  
  3. ###What is a data structure?
  4. - A partiuclar way of Organizing Data so that it can be used efficiently
  5.  
  6. ###What is an algorithm
  7. - Algorithms is a self contained step-by-step set of operations to be performed.
  8.  
  9. ###Why think about Big O notation?
  10. - show Big O graph
  11.  
  12. ###What is a stack?
  13. - What is a stack useful for?
  14. - How to implement a stack in Ruby
  15.  
  16. ###What is a queue?
  17. - What is a queue useful for?
  18. - How to implement queues in Ruby (hint: think simple)?
  19.  
  20. ###Sorting Algorithms
  21. - different sorting alroithms and when to use them
  22.  
  23. ###Searching Algorithms
  24. - different searching alroithms and when to use them
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement