Presentation is loading. Please wait.

Presentation is loading. Please wait.

Chapter 11 Sorting and Searching. Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-2 Chapter Objectives Examine the linear search and.

Similar presentations


Presentation on theme: "Chapter 11 Sorting and Searching. Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-2 Chapter Objectives Examine the linear search and."— Presentation transcript:

1 Chapter 11 Sorting and Searching

2 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-2 Chapter Objectives Examine the linear search and binary search algorithms Examine several sorting algorithms, including: – selection sort – insertion sort – bubble sort – quick sort – merge sort Discuss the complexity of these algorithms

3 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-3 Searching Searching is the process of finding a target element among a group of items (the search pool), or determining that it isn't there This requires repetitively comparing the target to candidates in the search pool An efficient sort performs no more comparisons than it has to The size of the search pool is a factor

4 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-4 The Comparable Interface We want to define the algorithms such that they can search any set of objects Therefore we will search objects that implement the Comparable interface It contains one method, compareTo, which is designed to return an integer that specifies the relationship between two objects: obj1.compareTo(obj2) This call returns a number less than, equal to, or greater than 0 if obj1 is less than, equal to, or greater than obj2, respectively

5 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-5 The Comparable Interface All of the methods presented in this chapter are part of the SortingandSearching class This class makes use of the generic type T For this class, we make the further distinction that T extends Comparable public class SortingandSearching

6 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-6 Linear Search A linear search simply examines each item in the search pool, one at a time, until either the target is found or until the pool is exhausted This approach does not assume the items in the search pool are in any particular order We just need to be able to examine each element in turn (in a linear fashion) It's fairly easy to understand, but not very efficient

7 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-7 FIGURE 11.1 A linear search

8 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-8 linearSearch

9 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-9 Binary Search If the search pool is sorted, then we can be more efficient than a linear search A binary search eliminates large parts of the search pool with each comparison Instead of starting the search at one end, we begin in the middle If the target isn't found, we know that if it is in the pool at all, it is in one half or the other We can then jump to the middle of that half, and continue similarly

10 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-10 FIGURE 11.2 A binary search

11 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-11 Binary Search For example, find the number 29 in the following sorted list of numbers: 8 15 22 29 36 54 55 61 70 73 88 Compare the target to the middle value 54 We now know that if 29 is in the list, it is in the front half of the list With one comparison, we've eliminated half of the data Then compare to 22, eliminating another quarter of the data, etc.

12 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-12 Binary Search A binary search algorithm is often implemented recursively Each recursive call searches a smaller portion of the search pool The base case of the recursion is running out of viable candidates to search, which means the target is not in the search pool At any point there may be two "middle" values, in which case either could be used

13 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-13 binarySearch

14 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-14 Comparing Search Algorithms On average, a linear search would examine n/2 elements before finding the target Therefore, a linear search is O(n) The worst case for a binary search is (log 2 n) comparisons A binary search is a logarithmic algorithm It has a time complexity of O(log 2 n) But keep in mind that the search pool must be sorted For large n, a binary search is much faster

15 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-15 Sorting Sorting is the process of arranging a group of items into a defined order based on particular criteria Many sorting algorithms have been designed Sequential sorts require approximately n 2 comparisons to sort n elements Logarithmic sorts typically require nlog 2 n comparisons to sort n elements

16 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-16 Sorting Let's define a generic sorting problem that any of our sorting algorithms could help solve As with searching, we must be able to compare one element to another

17 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-17 Listing 11.1

18 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-18 Listing 11.1 (cont.)

19 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-19 Listing 11.2

20 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-20 Listing 11.2 (cont.)

21 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-21 Selection Sort Selection sort orders a list of values by repetitively putting a particular value into its final position More specifically: – find the smallest value in the list – switch it with the value in the first position – find the next smallest value in the list – switch it with the value in the second position – repeat until all values are in their proper places

22 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-22 FIGURE 11.3 Illustration of selection sort processing

23 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-23 selectionSort

24 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-24 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 the second item into the sorted sublist, shifting the first item if needed – insert the third item into the sorted sublist, shifting the other items as needed – repeat until all values have been inserted into their proper positions

25 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-25 FIGURE 11.4 Illustration of insertion sort processing

26 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-26 insertionSort

27 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-27 Bubble Sort Bubble sort orders a list of values by repetitively comparing neighboring elements and swapping their positions if necessary More specifically: – scan the list, exchanging adjacent elements if they are not in relative order; this bubbles the highest value to the top – scan the list again, bubbling up the second highest value – repeat until all elements have been placed in their proper order

28 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-28 bubbleSort

29 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-29 Comparing Sorts We've seen three sorts so far: – selection sort – insertion sort – bubble sort They all use nested loops and perform approximately n 2 comparisons They are relatively inefficient Now we will turn our attention to more efficient sorts

30 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-30 Quick Sort Quick sort orders a list of values by partitioning the list around one element, then sorting each partition More specifically: – choose one element in the list to be the partition element – organize the elements so that all elements less than the partition element are to the left and all greater are to the right – apply the quick sort algorithm (recursively) to both partitions

31 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-31 Quick Sort The choice of the partition element is arbitrary For efficiency, it would be nice if the partition element divided the list roughly in half The algorithm will work in any case, however We will divide the work into two methods: – quickSort – performs the recursive algorithm – findPartition – rearranges the elements into two partitions

32 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-32 quickSort

33 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-33 findPartition

34 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-34 findPartition

35 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-35 findPartition

36 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-36 Merge Sort Merge sort orders a list of values by recursively dividing the list in half until each sub-list has one element, then recombining More specifically: – divide the list into two roughly equal parts – recursively divide each part in half, continuing until a part contains only one element – merge the two parts into one sorted list – continue to merge parts as the recursion unfolds

37 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-37 FIGURE 11.5 The decomposition of merge sort

38 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-38 FIGURE 11.6 The merge portion of the merge sort algorithm

39 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-39 mergeSort

40 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-40 mergeSort

41 Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-41 Efficiency of quickSort and mergeSort Both quickSort and mergeSort use a recursive structure that takes log 2 n processing steps to decompose the original list into lists of length one At each step, both algorithms either compare or merge all n elements Thus both algorithms are O(nlogn)


Download ppt "Chapter 11 Sorting and Searching. Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 11-2 Chapter Objectives Examine the linear search and."

Similar presentations


Ads by Google