Sorting is the process of arranging a list of items into a defined order based on some
criteria.
particular value into its final, sorted, position.
True/False. The insertion sort algorithm sorts a list by repeatedly comparing
neighboring elements and swapping them if necessary.
True/False. The bubble sort algorithm sorts a list of values by repetitively inserting a
particular value into a subset of the list that has already been sorted.
True/False. The quick sort algorithm sorts a list by partitioning the list and then
recursively sorting the two partitions.
until each sublist has one element and then merging these sub-lists into the sorted
order.
When would a linear search be preferable to a logarithmic search?
Which searching method requires that the list be sorted?
When would a sequential sort be preferable to a recursive sort?
The insertion sort algorithm sorts using what technique?
The bubble sort algorithm sorts using what technique?