1 / 94

Wednesday, April 26, 2017

This lecture covers various sorting algorithms, including Insertion Sort, Selection Sort, Merge Sort, and Quicksort. The complexity and performance of each algorithm are discussed.

williamsr
Télécharger la présentation

Wednesday, April 26, 2017

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. Programming Abstractions Spring 2017 Stanford University Computer Science Department Lecturer: Chris Gregg reading: Programming Abstractions in C++, Section 10.2 CS 106B Lecture 11: Sorting Wednesday, April 26, 2017

  2. Today's Topics • Logistics • Practice Midterm: Thursday 8-10pm, Bishop Auditorium. • Real Midterm: Next Thursday, 7-9pm. Please email if you need an alternate time! • Tiny Feedback: • Maybe post the Tiny Feedback to the website (don't waste time) • Sorting • Insertion Sort • Selection Sort • Merge Sort • Quicksort • Other sorts you might want to look at: • Radix Sort • Shell Sort • Tim Sort • Heap Sort (we will cover heaps later in the course) • Bogosort

  3. Sorting! • In general, sorting consists of putting elements into a particular order, most often the order is numerical or lexicographical (i.e., alphabetic). • In order for a list to be sorted, it must: • be in nondecreasing order (each element must be no smaller than the previous element) • be a permutation of the input

  4. Sorting! • Sorting is a well-researched subject, although new algorithms do arise (see Timsort, from 2002) • Fundamentally, comparison sorts at best have a complexity of O(n log n). • We also need to consider the space complexity: some sorts can be done in place, meaning the sorting does not take extra memory. This can be an important factor when choosing a sorting algorithm! (must sort)

  5. Sorting! • In-place sorting can be “stable” or “unstable”: a stable sort retains the order of elements with the same key, from the original unsorted list to the final, sorted, list • There are some phenomenal online sorting demonstrations: see the “Sorting Algorithm Animations” website: • http://www.sorting-algorithms.com, or the animation site at: http://www.cs.usfca.edu/~galles/visualization/ComparisonSort.html or the cool “15 sorts in 6 minutes” video on YouTube: https://www.youtube.com/watch?v=kPRA0W1kECg

  6. Sorts • There are many, many different ways to sort elements in a list. We will look at the following: • Insertion Sort • Selection Sort • Merge Sort • Quicksort

  7. Sorts • Insertion Sort • Selection Sort • Merge Sort • Quicksort

  8. Insertion Sort Insertion sort: orders a list of values by repetitively inserting a particular value into a sorted subset of the list More specifically: – consider the first item to be a sorted sublist of length 1 – insert second item into sorted sublist, shifting first item if needed – insert third item into sorted sublist, shifting items 1-2 as needed – ... – repeat until all values have been inserted into their proper positions

  9. Insertion Sort • Algorithm: • iterate through the list (starting with the second element) • at each element, shuffle the neighbors below that element up until the proper place is found for the element, and place it there.

  10. Insertion Sort • Algorithm: • iterate through the list (starting with the second element) • at each element, shuffle the neighbors below that element up until the proper place is found for the element, and place it there.

  11. Insertion Sort in place already (i.e., already bigger than 9) • Algorithm: • iterate through the list (starting with the second element) • at each element, shuffle the neighbors below that element up until the proper place is found for the element, and place it there.

  12. Insertion Sort 8 < 10, so 10 moves right. Then 8 < 9, so move 9 right • Algorithm: • iterate through the list (starting with the second element) • at each element, shuffle the neighbors below that element up until the proper place is found for the element, and place it there.

  13. Insertion Sort in place already (i.e., already bigger than 10) • Algorithm: • iterate through the list (starting with the second element) • at each element, shuffle the neighbors below that element up until the proper place is found for the element, and place it there.

  14. Insertion Sort • Algorithm: • iterate through the list (starting with the second element) • at each element, shuffle the neighbors below that element up until the proper place is found for the element, and place it there.

  15. Insertion Sort in place already (i.e., already bigger than 12) • Algorithm: • iterate through the list (starting with the second element) • at each element, shuffle the neighbors below that element up until the proper place is found for the element, and place it there.

  16. Insertion Sort Lots of shifting! • Algorithm: • iterate through the list (starting with the second element) • at each element, shuffle the neighbors below that element up until the proper place is found for the element, and place it there.

  17. Insertion Sort Okay • Algorithm: • iterate through the list (starting with the second element) • at each element, shuffle the neighbors below that element up until the proper place is found for the element, and place it there.

  18. Insertion Sort Okay Complexity: Worst performance: Best performance: • O(n2) (why? -- see extra slide!) • O(n) • Average performance: O(n2) (but very fast for small arrays!) • Worst case space complexity: O(n) total (plus one for swapping)

  19. Insertion Sort Code // Rearranges the elements of v into sorted order. void insertionSort(Vector<int>& v) { for (int i = 1; i < v.size(); i++) { int temp = v[i]; // slide elements right to make room for v[i] int j = i; while (j >= 1 && v[j - 1] > temp) { v[j] = v[j - 1]; j--; } v[j] = temp; } }

  20. Sorts • Insertion Sort • Selection Sort • Merge Sort • Quicksort

  21. Selection Sort • Selection Sort is another in-place sort that has a simple algorithm: • Find the smallest item in the list, and exchange it with the left-most unsorted element. • Repeat the process from the first unsorted element. • See animation at: http://www.cs.usfca.edu/~galles/visualization/ComparisonSort.html

  22. Selection Sort • Algorithm • Find the smallest item in the list, and exchange it with the left-most unsorted element. • Repeat the process from the first unsorted element. • Selection sort is particularly slow, because it needs to go through the entire list each time to find the smallest item.

  23. Selection Sort • Algorithm • Find the smallest item in the list, and exchange it with the left-most unsorted element. • Repeat the process from the first unsorted element. • Selection sort is particularly slow, because it needs to go through the entire list each time to find the smallest item.

  24. Selection Sort (no swap necessary) • Algorithm • Find the smallest item in the list, and exchange it with the left-most unsorted element. • Repeat the process from the first unsorted element. • Selection sort is particularly slow, because it needs to go through the entire list each time to find the smallest item.

  25. Selection Sort etc. • Complexity: • Worst performance: O(n2) • Best performance: O(n2) • Average performance: O(n2) • Worst case space complexity: O(n) total (plus one for swapping)

  26. Selection Sort Code // Rearranges elements of v into sorted order // using selection sort algorithm void selectionSort(Vector<int>& v) { for (int i = 0; i < v.size() - 1; i++) { // find index of smallest remaining value int min = i; for (int j = i + 1; j < v.size(); j++) { if (v[j] < v[min]) { min = j; } } // swap smallest value to proper place, v[i] if (i != min) { int temp = v[i]; v[i] = v[min]; v[min] = temp; } } }

  27. Sorts • Insertion Sort • Selection Sort • Merge Sort • Quicksort

  28. Merge Sort • Merge Sort is another comparison-based sorting algorithm and it is a divide-and-conquer sort. • Merge Sort can be coded recursively • In essence, you are merging sorted lists, e.g., • L1 = {3,5,11} L2 = {1,8,10} • merge(L1,L2)={1,3,5,8,10,11}

  29. Merge Sort • Merging two sorted lists is easy: L1: L2: Result:

  30. Merge Sort • Merging two sorted lists is easy: L1: L2: Result:

  31. Merge Sort • Merging two sorted lists is easy: L1: L2: Result:

  32. Merge Sort • Merging two sorted lists is easy: L1: L2: Result:

  33. Merge Sort • Merging two sorted lists is easy: L1: L2: Result:

  34. Merge Sort • Merging two sorted lists is easy: L1: L2: Result:

  35. Merge Sort • Merging two sorted lists is easy: L1: L2: Result:

  36. Merge Sort • Full algorithm: • Divide the unsorted list into n sublists, each containing 1 element (a list of 1 element is considered sorted). • Repeatedly merge sublists to produce new sorted sublists until there is only 1 sublist remaining. This will be the sorted list.

  37. Merge Sort Code (Recursive!) // Rearranges the elements of v into sorted order using // the merge sort algorithm. void mergeSort(Vector<int> &vec) { int n = vec.size(); if (n <= 1) return; Vector<int> v1; Vector<int> v2; for (int i=0; i < n; i++) { if (i < n / 2) { v1.add(vec[i]); } else { v2.add(vec[i]); } } mergeSort(v1); mergeSort(v2); vec.clear(); merge(vec, v1, v2); }

  38. Merge Halves Code // Merges the left/right elements into a sorted result. // Precondition: left/right are sorted, and vec is empty void merge(Vector<int> &vec, Vector<int> &v1, Vector<int> &v2) { int n1 = v1.size(); int n2 = v2.size(); int p1 = 0; int p2 = 0; while (p1 < n1 && p2 < n2) { if (v1[p1] < v2[p2]) { vec.add(v1[p1++]); } else { vec.add(v2[p2++]); } } while (p1 < n1) { vec.add(v1[p1++]); } while (p2 < n2) { vec.add(v2[p2++]); } }

  39. Merge Sort: Full Example

  40. Merge Sort: Full Example

  41. Merge Sort: Full Example

  42. Merge Sort: Full Example

  43. Merge Sort: Full Example

  44. Merge Sort: Full Example Merge as you go back up

  45. Merge Sort: Full Example Merge as you go back up

  46. Merge Sort: Full Example Merge as you go back up

  47. Merge Sort: Full Example Merge as you go back up

  48. Merge Sort: Space Complexity • Merge Sort can be completed in place, but • It takes more time because elements may have to be shifted often • It can also use “double storage” with a temporary array. • This is fast, because no elements need to be shifted • It takes double the memory, which makes it inefficient for in-memory sorts.

  49. Merge Sort: Time Complexity • The Double Memory merge sort has a worst-case time complexity of O(n log n) (this is great!) • Best case is also O(n log n) • Average case is O(n log n) • Note: We would like you to understand this analysis (and know the outcomes above), but it is not something we will expect you to reinvent on the midterm.

  50. Is our Merge Sort "stable"? • A "stable sort" keeps the original order of the same values in the same order. E.g., this 86 will end up ahead of this 86

More Related