Search and Sort. Binary Search common/mod01/binarySearchAlg.html

12
Search and Sort

Transcript of Search and Sort. Binary Search common/mod01/binarySearchAlg.html

Search and Sort

Bubble Sort

• An example on bubble sort. Starting from the beginning of the list,compare every adjacent pair, swap their position if they are not in the right order(the latter one is smaller than the former one). After each iteration, one less element (the last one) is needed to be compared until there is no more element left to be compared.

Insertion Sort

• An example on insertion sort. Check each element and put them in the right order in the sorted list.

Quick Sort

• Divide and Conquer!!

Quick Sort

2d Arrays78 0 0 9 98

1 2 h nips 213

5 6 4 d 13

jop 5 kol 2

moose silla gobi 45 32

Sort Comparisons

• http://www.sorting-algorithms.com/bubble-sort

• http://www.sorting-algorithms.com/

Bubble Vs Quick

• When is quick sort quicker than bubble sort

• When is bubble sort quicker than quick sort

• Which is generally quicker?

Describe Sort

• Describe how Bubble sort works• Describe how quick sort works as best you can

Question 14A procedure is required that can sort a list of randomly arranged items. This list can be of any given size. Two separate procedures are written, one using a quick sort algorithm and the other using a bubble sort algorithm. The performance of each procedure is compared by measuring the time it takes to sort an increasing number of list items. The results are shown below.

The graph line that most likely represents the performance of the bubble sort isA.  neither (1) nor (5) because a bubble sort cannot sort very large lists.B.  (2) because a bubble sort generally takes less time than a quick sort.C.  (1) because a bubble sort generally takes more time than a quick sort.D.  neither (1) nor (2) because the time taken for a bubble sort does not depend on the list size.

Binary Sort

• What is one prerequisite required to use a binary sort

• What philosophy does the binary sort work on?