cse 115
play

CSE 115 Introduction to Computer Science I Road map Review - PowerPoint PPT Presentation

CSE 115 Introduction to Computer Science I Road map Review (sorting) Empirical Demo Defining Custom Sorts Sorting Given a sequence of values that can be ordered, sorting involves rearranging these values so they go from smallest


  1. CSE 115 Introduction to Computer Science I

  2. Road map ▶︎ Review (sorting) ◀ Empirical Demo Defining Custom Sorts

  3. Sorting Given a sequence of values that can be ordered, sorting involves rearranging these values so they go from smallest to largest (or largest to smallest). Example: [17, 93, 12, 44, 82, 81, 22, 73] all mixed up Sorting rearranges items: [12, 17, 22, 44, 73, 81, 82, 93] increasing smallest largest

  4. Selection sort Given a list of values, repeatedly select the smallest value and push it to the end of a list of sorted values.

  5. Selection sort UNSORTED LIST [17, 93, 12, 44, 82, 81, 22, 73] [] SORTED LIST

  6. Selection sort UNSORTED LIST [17, 93, 12 , 44, 82, 81, 22, 73] Smallest from unsorted is 12 . [] SORTED LIST

  7. Selection sort UNSORTED LIST [17, 93, 12 , 44, 82, 81, 22, 73] Remove 12 from unsorted. [] SORTED LIST

  8. Selection sort UNSORTED LIST [17, 93, 44, 82, 81, 22, 73] Add 12 to end of sorted. [ 12 ] SORTED LIST

  9. Selection sort UNSORTED LIST [ 17 , 93, 44, 82, 81, 22, 73] Smallest from unsorted is 17 . [12] SORTED LIST

  10. Selection sort UNSORTED LIST [ 93, 44, 82, 81, 22, 73] Remove 17 from unsorted. [12] SORTED LIST

  11. Selection sort UNSORTED LIST [93, 44, 82, 81, 22, 73] Add 17 to end of sorted. [12, 17 ] SORTED LIST

  12. Selection sort UNSORTED LIST [93, 44, 82, 81, 22, 73] Smallest from unsorted is 22 . [12, 17] SORTED LIST

  13. Selection sort UNSORTED LIST [93, 44, 82, 81, 73] Remove 22 from unsorted. [12, 17] SORTED LIST

  14. Selection sort UNSORTED LIST [93, 44, 82, 81, 73] Add 22 to end of sorted. [12, 17, 22 ] SORTED LIST

  15. Selection sort UNSORTED LIST [93, 44, 82, 81, 73] . . . and so on . . . [12, 17, 22] SORTED LIST

  16. Selection sort UNSORTED LIST [ 93 ] Smallest from unsorted is 93 . [12, 17, 22, 44, 73, 81, 82] SORTED LIST

  17. Selection sort UNSORTED LIST [ ] Remove 93 from unsorted. [12, 17, 22, 44, 73, 81, 82] SORTED LIST

  18. Selection sort UNSORTED LIST [] Add 93 to end of sorted. [12, 17, 22, 44, 73, 81, 82, 93 ] SORTED LIST

  19. Selection sort UNSORTED LIST [] Since the unsorted list is empty, we're done! [12, 17, 22, 44, 73, 81, 82, 93] SORTED LIST

  20. selectionSort function def selectionSort(unsorted): sorted = [] Create an empty sorted list while len(unsorted) > 0: As long as unsorted is not empty, sorted.append(removeSmallest(unsorted)) move smallest from unsorted to sorted return sorted Return sorted list The code shown in these slides is slightly different from what was shown in class (and in earlier slide sets). It has been cleaned up and simplified.

  21. selectionSort function def selectionSort(unsorted): sorted = [] while len(unsorted) > 0: As long as unsorted is not empty, sorted.append(removeSmallest(unsorted)) move smallest from unsorted to sorted return sorted Return sorted list

  22. selectionSort function def selectionSort(unsorted): sorted = [] while len(unsorted) > 0: As long as unsorted is not empty, sorted.append(removeSmallest(unsorted)) move smallest from unsorted to sorted return sorted

  23. selectionSort function def selectionSort(unsorted): sorted = [] while len(unsorted) > 0: sorted.append(removeSmallest(unsorted)) move smallest from unsorted to sorted return sorted

  24. selectionSort function def selectionSort(unsorted): sorted = [] while len(unsorted) > 0: sorted.append(removeSmallest(unsorted)) return sorted

  25. removeSmallest function def removeSmallest(aList): smallest = aList[0] initialize smallest to first value in aList for value in aList: look through all values in aList if value < smallest: and if a smaller value is found update smallest smallest = value aList.remove(smallest) remove smallest from aList return smallest return the smallest value

  26. removeSmallest function def removeSmallest(aList): smallest = aList[0] for value in aList: look through all values in aList if value < smallest: and if a smaller value is found update smallest smallest = value aList.remove(smallest) remove smallest from aList return smallest return the smallest value

  27. removeSmallest function def removeSmallest(aList): smallest = aList[0] for value in aList: look through all values in aList if value < smallest: and if a smaller value is found update smallest smallest = value aList.remove(smallest) remove smallest from aList return smallest

  28. removeSmallest function def removeSmallest(aList): smallest = aList[0] for value in aList: look through all values in aList if value < smallest: and if a smaller value is found update smallest smallest = value aList.remove(smallest) return smallest

  29. removeSmallest function def removeSmallest(aList): smallest = aList[0] for value in aList: if value < smallest: if a smaller value is found update smallest smallest = value aList.remove(smallest) return smallest

  30. removeSmallest function def removeSmallest(aList): smallest = aList[0] for value in aList: if value < smallest: smallest = value update smallest aList.remove(smallest) return smallest

  31. removeSmallest function def removeSmallest(aList): smallest = aList[0] for value in aList: if value < smallest: smallest = value aList.remove(smallest) return smallest

  32. Merge sort Given a list of values, split into in left and right partitions of roughly equal size. Sort each partition, then merge the two sorted partitions.

  33. Merge sort basic idea [17, 93, 12, 44, 82, 81, 22, 73]

  34. Merge sort split into partitions [17, 93, 12, 44, 82, 81, 22, 73] [17, 93, 12, 44][82, 81, 22, 73]

  35. Merge sort sort partitions [17, 93, 12, 44, 82, 81, 22, 73] [17, 93, 12, 44][82, 81, 22, 73] . . . [12, 17, 44, 93][22, 73, 81, 82]

  36. Merge sort merge partitions [17, 93, 12, 44, 82, 81, 22, 73] [17, 93, 12, 44][82, 81, 22, 73] . . . [12, 17, 44, 93][22, 73, 81, 82] [12, 17, 22, 44, 73, 81, 82, 93]

  37. Merge sort merge partitions [17, 93, 12, 44, 82, 81, 22, 73] [17, 93, 12, 44][82, 81, 22, 73] [17, 93][12, 44][82, 81][22, 73] [17][93][12][44][82][81][22][73] [17, 93][12, 44][81, 82][22, 73] [12, 17, 44, 93][22, 73, 81, 82] [12, 17, 22, 44, 73, 81, 82, 93]

  38. mergeSort function def mergeSort(X) : mergeSortHelper(X, 0, len(X)) return X mergeSort calls mergeSortHelper with the endpoints of the initial partition

  39. mergeSortHelper function def mergeSortHelper(X, Left, Right): if Right - Left > 1 : As long as partition can be split Mid = (Left + Right) // 2 split into two roughly equal-sized partitions mergeSortHelper(X, Left, Mid) sort each partition (using merge sort) mergeSortHelper(X, Mid, Right) merge(X, Left, Mid, Right) merge two sorted partitions into one

  40. mergeSortHelper function def mergeSortHelper(X, Left, Right): if Right - Left > 1 : Mid = (Left + Right) // 2 split into two roughly equal-sized partitions mergeSortHelper(X, Left, Mid) sort each partition (using merge sort) mergeSortHelper(X, Mid, Right) merge(X, Left, Mid, Right) merge two sorted partitions into one

  41. mergeSortHelper function def mergeSortHelper(X, Left, Right): if Right - Left > 1 : Mid = (Left + Right) // 2 mergeSortHelper(X, Left, Mid) sort each partition (using merge sort) mergeSortHelper(X, Mid, Right) merge(X, Left, Mid, Right) merge two sorted partitions into one

  42. mergeSortHelper function def mergeSortHelper(X, Left, Right): if Right - Left > 1 : Mid = (Left + Right) // 2 mergeSortHelper(X, Left, Mid) sort left partition mergeSortHelper(X, Mid, Right) sort right partition merge(X, Left, Mid, Right) merge two sorted partitions into one

  43. mergeSortHelper function def mergeSortHelper(X, Left, Right): if Right - Left > 1 : Mid = (Left + Right) // 2 mergeSortHelper(X, Left, Mid) mergeSortHelper(X, Mid, Right) sort right partition merge(X, Left, Mid, Right) merge two sorted partitions into one

  44. mergeSortHelper function def mergeSortHelper(X, Left, Right): if Right - Left > 1 : Mid = (Left + Right) // 2 mergeSortHelper(X, Left, Mid) mergeSortHelper(X, Mid, Right) merge(X, Left, Mid, Right) merge two sorted partitions into one

  45. mergeSortHelper function def mergeSortHelper(X, Left, Right): if Right - Left > 1 : Mid = (Left + Right) // 2 mergeSortHelper(X, Left, Mid) mergeSortHelper(X, Mid, Right) merge(X, Left, Mid, Right)

  46. merge function def merge(X, L, M, R): temp = [] create empty sorted list lp = L create "pointers" to left & right partitions rp = M while lp < M and rp < R: if X[lp] < X[rp]: temp.append(X[lp]) compare the smallest values from left and right lp = lp + 1 add smaller of the two to sorted list else: temp.append(X[rp]) rp = rp + 1 while lp < M: temp.append(X[lp]) copy remaining data from left partition to sorted lp = lp + 1 while rp < R: copy remaining data from right partition to temp.append(X[rp]) sorted rp = rp + 1 for i in range(L,R): copy from sorted back to original list X[i] = temp[i-L]

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend