Sorting Sorting Arranging items in a collection so that there is an ordering on one (or more) of the fields in the items Sort Key The field (or fields)

Slides:



Advertisements
Similar presentations
P p Two slow but simple algorithms are Selectionsort and Insertionsort. p p This presentation demonstrates how the two algorithms work. Quadratic Sorting.
Advertisements

Chapter 5 introduces the often- used data structure of linked lists. This presentation shows how to implement the most common operations on linked lists.
CSC211 Data Structures Lecture 9 Linked Lists Instructor: Prof. Xiaoyan Li Department of Computer Science Mount Holyoke College.
Chapter 12 discusses several ways of storing information in an array, and later searching for the information. Hash tables are a common approach to the.
Chapter 8 introduces the technique of recursive programming. As you have seen, recursive programming involves spotting smaller occurrences of a problem.
Container Classes A container class is a data type that is capable of holding a collection of items. In C++, container classes can be implemented as.
L l One of the tree applications in Chapter 9 is binary search trees. l l In Chapter 9, binary search trees are used to implement bags and sets. l l This.
 One of the tree applications in Chapter 10 is binary search trees.  In Chapter 10, binary search trees are used to implement bags and sets.  This presentation.
CSC212 Data Structure Lecture 14 Binary Search Trees Instructor: Prof. George Wolberg Department of Computer Science City College of New York.
 Chapter 11 has several programming projects, including a project that uses heaps.  This presentation shows you what a heap is, and demonstrates two.
CSC212 Data Structure - Section AB Lecture 20 Hashing Instructor: Edgardo Molina Department of Computer Science City College of New York.
 Chapter 7 introduces the stack data type.  Several example applications of stacks are given in that chapter.  This presentation shows another use called.
P Chapter 6 introduces the stack data type. p Several example applications of stacks are given in that chapter. p This presentation shows another use called.
Sorting I Chapter 8 Kruse and Ryba. Introduction Common problem: sort a list of values, starting from lowest to highest. –List of exam scores –Words of.
  Chapter 12 presents several common algorithms for sorting an array of integers.   Two slow but simple algorithms are Selectionsort and Insertionsort.
Sorting A fundamental operation in computer science (many programs need to sort as an intermediate step). Many sorting algorithms have been developed Choose.
 Sort: arrange values into an order  Alphabetical  Ascending numeric  Descending numeric  Does come before or after “%”?  Two algorithms considered.
Arrays part 2 Applications & such. Returning an array from a method A method can return an array, just like it can return any other kind of variable;
P p Chapter 10 has several programming projects, including a project that uses heaps. p p This presentation shows you what a heap is, and demonstrates.
Sorting1 Sorting Order in the court!. sorting2 Importance of sorting Sorting a list of values is a fundamental task of computers - this task is one of.
CSC212 Data Structure - Section FG Lecture 21 Quadratic Sorting Instructor: Zhigang Zhu Department of Computer Science City College of New York.
 Chapter 10 introduces trees.  This presentation illustrates the simplest kind of trees: Complete Binary Trees. Complete Binary Trees Data Structures.
Copyright © 1999, Carnegie Mellon. All Rights Reserved. Chapter 12 presents several common algorithms for sorting an array of integers. Two slow but simple.
L l Chapter 11 discusses several ways of storing information in an array, and later searching for the information. l l Hash tables are a common approach.
L l Chapter 4 introduces the often- used linked list data structures l l This presentation shows how to implement the most common operations on linked.
 Chapter 9 introduces the technique of recursive programming.  As you have seen, recursive programming involves spotting smaller occurrences of a problem.
1 Foundations of Software Design Fall 2002 Marti Hearst Lecture 20: Sorting.
CSC212 Data Structure - Section FG Lecture 12 Stacks and Queues Instructor: Zhigang Zhu Department of Computer Science City College of New York.
 Chapter 8 introduces the queue data type.  Several example applications of queues are given in that chapter.  This presentation describes the queue.
Week 11 Sorting Algorithms. Sorting Sorting Algorithms A sorting algorithm is an algorithm that puts elements of a list in a certain order. We need sorting.
Chapter 9 Abstract Data Types and Algorithms. 2 Abstract Data Types Abstract data type A data type whose properties (data and operations) are specified.
Chapter 9 Abstract Data Types and Algorithms. 2 Chapter Goals Define an abstract data type and discuss its role in algorithm development Distinguish between.
Chapter 9 (modified) Abstract Data Types and Algorithms Nell Dale John Lewis.
Chapter 9 Abstract Data Types and Algorithms Nell Dale John Lewis.
 A Collection class is a data type that is capable of holding a group of items.  In Java, Collection classes can be implemented as a class, along with.
CSC211 Data Structures Lecture 20 Hashing Instructor: Prof. Xiaoyan Li Department of Computer Science Mount Holyoke College.
CSC211 Data Structures Lecture 21 Quadratic Sorting Instructor: Prof. Xiaoyan Li Department of Computer Science Mount Holyoke College.
Sort Algorithms.
CSC211 Data Structures Lecture 18 Heaps and Priority Queues Instructor: Prof. Xiaoyan Li Department of Computer Science Mount Holyoke College.
P p Chapter 10 introduces trees. p p This presentation illustrates the simplest kind of trees: Complete Binary Trees. Complete Binary Trees Data Structures.
Container Classes  A container class is a data type that is capable of holding a collection of items.  In C++, container classes can be implemented as.
CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York.
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Chapter 9: Algorithm Efficiency and Sorting Data Abstraction &
CPS120: Introduction to Computer Science Sorting.
Chapter 9 Abstract Data Types and Algorithms Nell Dale John Lewis.
UNIT - IV SORTING By B.Venkateswarlu Dept of CSE.
Linked Lists in Action Chapter 5 introduces the often-used data public classure of linked lists. This presentation shows how to implement the most common.
Sorting Chapter 13 presents several common algorithms for sorting an array of integers. Two slow but simple algorithms are Selectionsort and Insertionsort.
Using a Stack Chapter 6 introduces the stack data type.
Hash Tables Chapter 11 discusses several ways of storing information in an array, and later searching for the information. Hash tables are a common approach.
Using a Stack Chapter 6 introduces the stack data type.
Quadratic Sorting Chapter 12 presents several common algorithms for sorting an array of integers. Two slow but simple algorithms are Selectionsort and.
Heaps Chapter 10 has several programming projects, including a project that uses heaps. This presentation shows you what a heap is, and demonstrates two.
Heaps Chapter 10 has several programming projects, including a project that uses heaps. This presentation shows you what a heap is, and demonstrates two.
Sorting "There's nothing in your head the sorting hat can't see. So try me on and I will tell you where you ought to be." -The Sorting Hat, Harry Potter.
Using a Stack Chapter 6 introduces the stack data type.
Sorting Chapter 13 presents several common algorithms for sorting an array of integers. Two slow but simple algorithms are Selectionsort and Insertionsort.
Heaps Chapter 11 has several programming projects, including a project that uses heaps. This presentation shows you what a heap is, and demonstrates.
Using a Stack Chapter 6 introduces the stack data type.
Hash Tables Chapter 12 discusses several ways of storing information in an array, and later searching for the information. Hash tables are a common.
Hash Tables Chapter 11 discusses several ways of storing information in an array, and later searching for the information. Hash tables are a common approach.
Hash Tables Chapter 11 discusses several ways of storing information in an array, and later searching for the information. Hash tables are a common approach.
Using a Queue Chapter 8 introduces the queue data type.
Using a Queue Chapter 8 introduces the queue data type.
Sorting.
Heaps Chapter 10 has several programming projects, including a project that uses heaps. This presentation shows you what a heap is, and demonstrates two.
Hash Tables Chapter 11 discusses several ways of storing information in an array, and later searching for the information. Hash tables are a common approach.
Presentation transcript:

Sorting Sorting Arranging items in a collection so that there is an ordering on one (or more) of the fields in the items Sort Key The field (or fields) on which the ordering is based Sorting algorithms Algorithms that order the items in the collection based on the sort key Why is sorting important?

 Chapter 13 presents several common algorithms for sorting an array of integers.  Two slow but simple algorithms are Selectionsort and Insertionsort.  This presentation demonstrates how the two algorithms work. Quadratic Sorting Data Structures and Other Objects Using C++

Selection Sort Given a list of names, put them in alphabetical order  Find the name that comes first in the alphabet, and write it on a second sheet of paper  Cross out the name off the original list  Continue this cycle until all the names on the original list have been crossed out and written onto the second list, at which point the second list contains the same items but in sorted order

Selection Sort A slight adjustment to this manual approach does away with the need to duplicate space  As you cross a name off the original list, a free space opens up  Instead of writing the value found on a second list, exchange it with the value currently in the position where the crossed-off item should go

Selection Sort Figure 9.9 Example of a selection sort (sorted elements are shaded)

Sorting an Array of Integers   The picture shows an array of six integers that we want to sort from smallest to largest [0] [1] [2] [3] [4] [5]

The Selectionsort Algorithm   Start by finding the smallest entry. [0] [1] [2] [3] [4] [5]

The Selectionsort Algorithm   Start by finding the smallest entry.   Swap the smallest entry with the first entry. [0] [1] [2] [3] [4] [5]

The Selectionsort Algorithm   Start by finding the smallest entry.   Swap the smallest entry with the first entry. [0] [1] [2] [3] [4] [5]

The Selectionsort Algorithm   Part of the array is now sorted. Sorted side Unsorted side [0] [1] [2] [3] [4] [5]

The Selectionsort Algorithm   Find the smallest element in the unsorted side. Sorted side Unsorted side [0] [1] [2] [3] [4] [5]

The Selectionsort Algorithm   Find the smallest element in the unsorted side.   Swap with the front of the unsorted side. Sorted side Unsorted side [0] [1] [2] [3] [4] [5]

The Selectionsort Algorithm   We have increased the size of the sorted side by one element. Sorted side Unsorted side [0] [1] [2] [3] [4] [5]

The Selectionsort Algorithm   The process continues... Sorted side Unsorted side Smallest from unsorted [0] [1] [2] [3] [4] [5]

The Selectionsort Algorithm   The process continues... Sorted side Unsorted side [0] [1] [2] [3] [4] [5] Swap with front

The Selectionsort Algorithm   The process continues... Sorted side Unsorted side Sorted side is bigger [0] [1] [2] [3] [4] [5]

The Selectionsort Algorithm   The process keeps adding one more number to the sorted side.   The sorted side has the smallest numbers, arranged from small to large. Sorted side Unsorted side [0] [1] [2] [3] [4] [5]

The Selectionsort Algorithm   We can stop when the unsorted side has just one number, since that number must be the largest number. [0] [1] [2] [3] [4] [5] Sorted side Unsorted side

The Selectionsort Algorithm   The array is now sorted.   We repeatedly selected the smallest element, and moved this element to the front of the unsorted side. [0] [1] [2] [3] [4] [5]

The Insertionsort Algorithm   The Insertionsort algorithm also views the array as having a sorted side and an unsorted side. [0] [1] [2] [3] [4] [5]

The Insertionsort Algorithm   The sorted side starts with just the first element, which is not necessarily the smallest element. [0] [1] [2] [3] [4] [5] Sorted side Unsorted side

The Insertionsort Algorithm   The sorted side grows by taking the front element from the unsorted side... Sorted side Unsorted side cur i=1 for (int i = 1; i < v.size(); i++) { int cur = v[i]; // slide cur down into position to left

The Insertionsort Algorithm  ...and inserting it in the place that keeps the sorted side arranged from small to large. Sorted side Unsorted side j=i-1 i=1 for (int j=i-1; j >= 0 && v[j] > cur; j--) v[j+1] = v[j]; cur

The Insertionsort Algorithm   In this example, the new element goes in front of the element that was already in the sorted side. Sorted side Unsorted side for (int j=i-1; j >= 0 && v[j] > cur; j--) v[j+1] = v[j]; v[j+1] = cur; j-- j+1=0

The Insertionsort Algorithm   Sometimes we are lucky and the new inserted item doesn't need to move at all. Sorted side Unsorted side for (int i = 1; i < v.size(); i++) { int cur = v[i]; // slide cur down into position to left

The Insertionsort Algorithm   Sometimes we are lucky twice in a row. Sorted side Unsorted side v[j+1] = cur; for (int j=i-1; j >= 0 && v[j] > cur; j--) v[j+1] = v[j];

How to Insert One Element   Copy the new element to a separate location. Sorted side Unsorted side cur for (int j=i-1; j >= 0 && v[j] > cur; j--) v[j+1] = v[j];

How to Insert One Element   Shift elements in the sorted side, creating an open space for the new element. for (int j=i-1; j >= 0 && v[j] > cur; j--) v[j+1] = v[j];

How to Insert One Element   Shift elements in the sorted side, creating an open space for the new element. for (int j=i-1; j >= 0 && v[j] > cur; j--) v[j+1] = v[j];

How to Insert One Element   Continue shifting elements... for (int j=i-1; j >= 0 && v[j] > cur; j--) v[j+1] = v[j];

How to Insert One Element   Continue shifting elements... for (int j=i-1; j >= 0 && v[j] > cur; j--) v[j+1] = v[j];

How to Insert One Element  ...until you reach the location for the new element. for (int j=i-1; j >= 0 && v[j] > cur; j--) v[j+1] = v[j];

How to Insert One Element   Copy the new element back into the array, at the correct location. Sorted side Unsorted side v[j+1] = cur;

How to Insert One Element  The last element must also be inserted. Start by copying it... [0] [1] [2] [3] [4] [5] Sorted side Unsorted side

Bubble Sort Bubble Sort uses the same strategy: Find the next item Put it into its proper place But uses a different scheme for finding the next item Starting with the last list element, compare successive pairs of elements, swapping whenever the bottom element of the pair is smaller than the one above it

Bubble Sort Figure 9.10 Example of a bubble sort

Algorithms Can you write the algorithms for the selection sort and the bubble sort? Can you think of a way to make the bubble sort more efficient?

Logarithmic Sorting * Quick Sort * Merge Sort

Quicksort Figure 9.12 Ordering a list using the Quicksort algorithm It is easier to sort a smaller number of items: Sort A…F, G…L, M…R, and S…Z and A…Z is sorted

Quicksort If (there is more than one item in list[first]..list[last]) Select splitVal Split the list so that list[first]..list[splitPoint-1] <= splitVal list[splitPoint] = splitVal list[splitPoint+1]..list[last] > splitVal Quicksort the left half Quicksort the right half

Quicksort

Split Set left to first + 1 Set right to last Do Increment left until list[left] > splitVal OR left > right Decrement right until list[right] right If (left < right) Swap list[left] and list[right] While (left <= right) Set splitPoint to right Swap list[first] and last[right]

Quicksort Figure 9.13 Splitting algorithm

Quick Sort Code  void Quicksort(Vector &v, int start, int stop) {  if (stop > start) { //base case  int pivot = Partition(v, start, stop); //partition  Quicksort(v, start, pivot-1); //recursive sort left  Quicksort(v, pivot+1, stop);//recursive sort right  }

Partition Code – set up pivot  int Partition(vector & arr, int start, int stop)  { int lh = start + 1; //left hand  int rh = stop; //right hand  int pivot; //variable to hold pivot  pivot = arr[start]; //set pivot to first element

Partition Code—Move to center  while(true) {  while(lh = pivot) rh--;  while(lh <rh && arr[lh] < pivot) lh++;  if(lh == rh) break; //base case

Partition Code—Swap  while(true) {  while(lh = pivot) rh--;  while(lh <rh && arr[lh] < pivot) lh++;  if(lh == rh) break; //base case  swap(arr[lh], arr[rh]);  }

Partition Code—Left Overs?  if(arr[lh] >= pivot) return start; swap(arr[start], arr[lh]; return lh;  } //end Partition function

Merge Sort—Partition

Merge Sort—Partition

Merge Sort—Partition

Merge Sort—Merge Compare -- smallest goes first

Merge Sort—Merge Compare -- smallest goes first

Merge Sort—Merge Compare -- smallest goes first

Merge Sort—Merge Compare -- smallest goes first

Merge Sort—Merge Compare -- smallest goes first

Merge Sort—Merge Compare -- smallest goes first

Merge Sort—Merge Compare -- smallest goes first

Merge Sort—Merge Compare -- smallest goes first

Merge Sort—Merge

Merge Sort—Merge Compare –smallest goes first Compare—smallest goes first Choose smallest from each stack

Merge Sort—Merge Compare –smallest goes first Compare—smallest goes first Choose smallest from each stack

Merge Sort—Merge Compare –smallest first Compare --smallest first

Merge Sort—Merge Compare –smallest first

Merge Sort—Merge Compare –smallest goes first

Merge Sort—Merge Compare –smallest first

Merge Sort—Merge Compare –smallest first

Merge Sort—Merge Compare –smallest first

Merge Sort—Merge Compare—smallest first

Merge Sort—Merge Compare –smallest first

Merge Sort—Merge Compare –smallest first

Merge Sort—Merge Compare –smallest first The remainders

Merge Sort—Merge The remainders

Merge Sort—Done

A Quiz How many shifts will occur before we copy this element back into the array? [0] [1] [2] [3] [4] [5]

A Quiz  Four items are shifted. [0] [1] [2] [3] [4] [5]

A Quiz  Four items are shifted.  And then the element is copied back into the array. [0] [1] [2] [3] [4] [5]

 Both Selectionsort and Insertionsort have a worst- case time of O(n 2 ), making them impractical for large arrays.  But they are easy to program, easy to debug.  Insertionsort also has good performance when the array is nearly sorted to begin with.  But more sophisticated sorting algorithms are needed when good performance is needed in all cases for large arrays. Timing and Other Issues

T HE E ND Presentation copyright 2004 Addison Wesley Longman, For use with Data Structures and Other Objects Using C++ by Michael Main and Walter Savitch. Some artwork in the presentation is used with permission from Presentation Task Force (copyright New Vision Technologies Inc) and Corel Gallery Clipart Catalog (copyright Corel Corporation, 3G Graphics Inc, Archive Arts, Cartesia Software, Image Club Graphics Inc, One Mile Up Inc, TechPool Studios, Totem Graphics Inc). Students and instructors who use Data Structures and Other Objects Using C++ are welcome to use this presentation however they see fit, so long as this copyright notice remains intact.