What is a binary search?
-1) Find middle item in ordered list.
2) If this is the item your looking for stop if not compare the item your looking for with the middle item and if it comes before the middle item discard the left, and if it comes after the item then discard the right.
Repeat until you find the item.
TO BE USED IN AN ORDERED LIST.
What is a linear search?
What can be compared between an binary search and an linear search?
What is a Bubble sort?
What are the advantages and disadvantages of a bubble sort?
Pros:
Cons:
What is a Merge sort?
What are the pros and cons of a merge list?
Pros:
Cons:
What is an insertion sort?