Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Sorting algorithms
  2. 1. Bubble sort - go through each element and if the next element is greater then swap
  3. 2. Insertion sort - go through each element and keep inserting in sorted list
  4. 3. Merge sort - divide and conquer using stitch(merge)
  5. 4. Quick sort - use a pivot and sort around the pivot
  6.  
  7. Data Structures Interfaces
  8. Sets - cloud of non-duplicate values
  9. maps - key value sets
  10. stacks - last in first out
  11. queue - first in first out
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement