1 / 12

Search and Sort

Search and Sort. Binary Search. http://video.franklin.edu/Franklin/Math/170/common/mod01/binarySearchAlg.html. Bubble Sort.

rafer
Download Presentation

Search and Sort

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Search and Sort

  2. Binary Search • http://video.franklin.edu/Franklin/Math/170/common/mod01/binarySearchAlg.html

  3. 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.

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

  5. Quick Sort • Divide and Conquer!!

  6. Quick Sort

  7. 2d Arrays

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

  9. Bubble Vs Quick • When is quick sort quicker than bubble sort • When is bubble sort quicker than quick sort • Which is generally quicker?

  10. Describe Sort • Describe how Bubble sort works • Describe how quick sort works as best you can

  11. 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.

  12. Binary Sort • What is one prerequisite required to use a binary sort • What philosophy does the binary sort work on?

More Related