Presentation is loading. Please wait.

Presentation is loading. Please wait.

Order Statistics. Order statistics Given an input of n values and an integer i, we wish to find the i’th largest value. There are i-1 elements smaller.

Similar presentations


Presentation on theme: "Order Statistics. Order statistics Given an input of n values and an integer i, we wish to find the i’th largest value. There are i-1 elements smaller."— Presentation transcript:

1 Order Statistics

2 Order statistics Given an input of n values and an integer i, we wish to find the i’th largest value. There are i-1 elements smaller than the i’th order statistic. The minimal element is of order statistic 1

3 Order statistics The maximum element is the n’th order statistic. Finding the i’th order statistic when the values are sorted is trivial O(1) using direct access, but requires at least nlogn time to sort the elements in advance.

4 Selection Our goal is to find the order statistics without sorting the elements, if indeed we will be able to improve the execution time. If we want to find the minimal or maximal element, then a linear search will do. However this idea can not be easily expanded for any order statistic.

5 Tournaments In a basketball tournament involving n teams, we form a complete binary tree with n leaves. Each internal node represents an elimination game. Each level has half the number of nodes from the previous level. Assuming the better team always wins its game, the best team always wins all its games, and can be found as the winner of the last game.

6 Tournaments

7 Tournaments can be used for finding minimum or maximum. But could they be enhanced for selection of any order statistics. The tournament algorithm: –Can be run in parallel. –Is fair (every team gets to each step after the same number of games)

8 Tournaments To select the second best team in the tournament, we need to compare all the logn teams that lost to the best element. We can compare these elements recursively using another tournament. The running time is therefore of n + logn

9 HeapSelect The tournament algorithm is like a binary heap, and finding the second minimum is like removing the minimal element from a binary heap. For any other k we use: heapSelect (int[] values, int k) { Heap heap = buildHeap(values); for (i = 1; i < k; i++) heap.removeMin(); return heap.minElement(); }

10 Heap Select The time is O(n + klogn) which is linear for any k = O(n/logn) But this algorithm is not linear for finding the median element, which is of common interest.

11 Quick Select We could use quick sort to first sort the elements and then select the k’th element according to its location in the sorted values quickSelect (int[] values, int k) { quickSort(values); return values (k); }

12 Quick Select An inline version of this algorithm would look like this. quickSelect(int[] values, int k) { pick x in values partition values into L1 x quicksort(L1) quicksort(L3) concatenate L1,L2,L3 return kth element in concatenation }

13 Quick Select But if k is less than the length of L1, we will always return some object in L1. Similarly, if k is greater than the combined lengths of L1 and L2, we will always return some object in L3, and it doesn't matter whether we call quicksort on L1. In either case, we can save some time by only making one of the two recursive calls. If we find that the element to be returned is in L2, we can just immediately return x without making either recursive call.

14 Quick Select quickSelect(int[] values, int k) { pick x in values partition values into L1 x if (k <= length(L1)) { quicksort(L1) return kth element in L1 } else if (k > length(L1)+length(L2)) { quicksort(L3) return (k-length(L1)-length(L2)) element in L3 } else return x }

15 Recursive final version quickSelect(int[] values, int k) { pick x in values partition values into L1 x if (k <= length(L1)) { return quickSelect(L1,k) } else if (k > length(L1)+length(L2)) { return quickSelect(L3, k – length(L1)+length(L2)) } else return x }

16 Time analysis If the partition always splits the values to 2 equal sub arrays Worst case is that partition has a bad split Average case- ?

17 Worst case O(n) algorithm Divide the input elements into groups of 5 elements each Find the median of each group Use select recursively to find the median of medians Partition the input using the median of medians as the pivot element

18 Time analysis The number of elements greater than x (the median of medians) is at least

19 Time analysis

20 Exercise Given an array of n elements, describe an algorithm that efficiently finds if one of the numbers in the array appears more than n/3 times

21 An inefficient solution Sort the array. Then check for a sequence of size greater than n/3.

22 An efficient solution The only elements that can appear more than n/3 time are the o.s n/3 and o.s 2n/3 Find both of these elements using the select algorithm. Count the instances of each of these elements in the array.

23 An efficient solution `

24 Example n=12 n/3=4 2n/3=8 101334424944 1233444449

25 Exercise Given two sorted arrays a,b of size n each, find the median of the the 2n elements of the union of a and b. The median of array of even size is the average of the two elements in the middle of the sorted collection

26 An inefficient solution Using merge, we unify both arrays into a single array, and return the median of the new array.

27 An efficient solution Let a be the median of A, let b be the median of b. Assuming Recursively call the algorithm with the upper half of A and the lower half of B Base case: if |A| =1 and |B| =1 return (a+b)/2

28 Proof The median c of the union of A and B A has exactly n/2 elements smaller than a B has at most n/2 elements smaller than a In the union there is at most n elements smaller than a In the union there are at most n elements greater than b

29 Proof The median of the merge of the upper half of A and the lower half of B is the same median as A union B. acb n n <n

30 Proof Since we removed exactly n elements and these elements are n/2 smallest and n/2 largest in the union, the median stays at place. Time analysis:


Download ppt "Order Statistics. Order statistics Given an input of n values and an integer i, we wish to find the i’th largest value. There are i-1 elements smaller."

Similar presentations


Ads by Google