1 / 23

8.Sorting in Linear Time

8.Sorting in Linear Time. Heejin Park College of Information and Communications Hanyang University. Contents. Lower bounds for sorting Counting sort Radix sort. Lower bounds for sorting. Lower bounds for sorting

ena
Download Presentation

8.Sorting in Linear Time

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. 8.Sorting in Linear Time Heejin Park College of Information and Communications Hanyang University

  2. Contents • Lower bounds for sorting • Counting sort • Radix sort

  3. Lower bounds for sorting • Lower bounds for sorting • Any comparison sort must make Θ(n lg n) comparisons in the worst case to sort n elements. • Comparison sort • Sorting algorithms using only comparisons to determine the sorted order of the input elements. • Heapsort, Mergesort, Insertion sort, Selection sort, Quicksort

  4. Lower bounds for sorting • Comparisons between elements gains order information about an input sequence <a1, a2, . . ., an.>. • That is, given two elements aiand aj, we perform one of the tests ai< aj, ai≤ aj, ai= aj, ai≥ aj, or ai> ajto determine their relative order. • we assume without loss of generality that all of the input elements are distinct. • The comparisons ai≤ aj, ai≥ aj, ai> aj, and ai< aj are all equivalent. • We assume that all comparisions have the form ai≤ aj

  5. The decision-tree model • Comparison sorts can be viewed in terms of decision trees. • A binary tree. • Each leaf is a permutation of input elements. • Each internal node i:j indicates a comparison ai≤ aj . A decision tree for insertion sort

  6. The decision-tree model • The execution of the sorting algorithm corresponds to tracing a path from the root of the decision tree to at leaf. • The left subtree dictates subsequent comparisons for ai≤ aj . • The right subtree dictates subsequent comparisons for ai> aj . A decision tree for insertion sort

  7. The decision-tree model • The length of the longest path from the root of a decision tree to any of its leaves represents the worst-case number of comparisons. • the worst-case number of comparisons = the height of its decision tree. A decision tree for insertion sort

  8. The decision-tree model • Theorem 8.1: Any comparison sort algorithm requires Ω(n lg n) comparisons in the worst case. • Proof: • Height: h, Number of element: n • The number of leaves: n! • Each permutations for n input elements should appear as leaves. • n! ≤ 2h • h ≤ lg(n!) • Ω(n lg n) (by equation (3.18) : lg(n!) = Θ(nlgn)).

  9. Counting sort • Counting sort • A sorting algorithm using counting. • Each input element x should be located in the ith place after sorting if the number of elements less than x is i-1. • Stable • Same values in the input array appear in the same order in the output array.

  10. Counting sort A C B

  11. Counting sort A C C’

  12. Counting sort A C’ C’ B B C’ C’ B

  13. Counting sort • Running time • Θ(n+k) time where k is the range of input integers.

  14. Counting sort COUNTING-SORT(A, B, k) 1 for i ← 0 to k 2 do C[i] ← 0 3 for j ← 1 to length[A] 4 do C[y[j]] ← C[A[j]] + 1 5 ▹ C[i] now contains the number of elements equal to i. 6 for i ← 1 to k 7 do C[i] ← C[i] + C[i - 1] 8 ▹ C[i] now contains the number of elements less than or equal to i. 9 for j ← length[A] downto 1 10 do B[C[A[j]]] ← A[j] 11 C[A[j]] ← C[A[j]] - 1 Θ(k) Θ(n) Θ(k) Θ(n)

  15. Counting sort The overall time is Θ(k+n). If k = O(n), the running time is Θ(n).

  16. Radix sort Radix sort (MSB  LSB) 326 326 326 326 435 435 453 453 453 453 435 608 608 608 608 835 690 690 690 751 704 704 751 435 751 751 704 704 835 835 835 690

  17. Radix sort Radix sort (MSB  LSB) 326 704 690 326 435 608 751 453 453 326 453 608 608 835 704 835 690 435 835 751 704 751 435 435 751 453 326 704 835 690 608 690

  18. Radix sort RADIX-SORT(A, d) 1 for i ← 1 tod 2 do use a stable sort to sort array A on digit i RADIXSORT sorts in Θ(d(n + k)) time when n d-digit numbers are given and each digit can take on up to k possible values. When d is constant and k = O(n), radix sort runs in linear time.

  19. Radix sort Lemma 8.4 Given n b-bit numbers and any positive integer r ≤ b, RADIX-SORT correctly sorts these numbers in Θ((b/r)(n + 2r)) time. b n r r r

  20. Radix sort • Computing optimal r minimizing (b/r)(n + 2r). 1. b < ⌊lg n⌋ for any value of r, (n + 2r) = Θ(n) because r ≤ b. So choosing r = b yields a running time : (b/b)(n + 2b) = Θ(n), which is asymptotically optimal.

  21. Radix sort • Computing optimal r minimizing (b/r)(n + 2r). 2. b ≥ ⌊lg n⌋ choosing r = ⌊lg n⌋ gives the best time to within a constant factor, (b/lgn)(n+2lgn) = (b/lgn)(2n) = Θ(bn/ lg n). • As we increase r above ⌊lg n⌋, the 2r in the numerator increases faster than the r in the dominator. • As we decrease r below ⌊lg n⌋, then the b/r term increases and the n + 2r term remains at Θ(n).

  22. Radix sort • Compare radix sort with other sorting algorithms. • If b = O(lg n), we choose r ≈ lg n. Radix sort: Θ(n) Quicksort: Θ(n lg n)

  23. Radix sort The constant factors hidden in the Θ-notation differ. 1. Radix sort may make fewer passes than quicksort over the n keys, each pass of radix sort may take significantly longer. 2. Radix sort does not sort in place.

More Related