What two things are taken into consideration when determining the complexity of a sort?
2. )comparisons
What two parts do the insertion and selection consist of?
unsorted & sorted
What is the procedure for a selection sort?
What is the procedure for an insertion sort?
What is the worst time complexity of the insertion and selection sort?
O(N^2)
What is the complexity of the merge sort?
O(N*log N)