2.6 ORDER STATISTICS A problem closely related to sorting is that of selecting the kth smallest ele- ment in a sequence of n elements.† One obvious solution is to sort the sequence into nondecreasing order and then locate the kth element. As we have seen, this would require n log n comparisons. By a careful application of the divide-and-conquer strategy, we can find the kth smallest element in O(n) steps. An important special case occurs when k = [n/2], in which case we are finding the median of a sequence in linear time. Algorithm 3.6. Finding the kth smallest element. Input. A sequence S of n elements drawn from a linearly ordered set and an integer k, 1 ≤ k ≤ n. Output. The kth smallest element in S. Method. We use the recursive procedure SELECT in Fig. 3.10. ☐ Let us examine Algorithm 3.6 intuitively to see why it works. The basic idea is to partition the given sequence about some element m into three subsequences S₁, S., S₁ such that S, contains all elements less than m, S, all Strictly speaking, the kth smallest of a sequence a₁. da, is an element b in the sequence such that there are at most k - 1 values for i for which a,
2.6 ORDER STATISTICS A problem closely related to sorting is that of selecting the kth smallest ele- ment in a sequence of n elements.† One obvious solution is to sort the sequence into nondecreasing order and then locate the kth element. As we have seen, this would require n log n comparisons. By a careful application of the divide-and-conquer strategy, we can find the kth smallest element in O(n) steps. An important special case occurs when k = [n/2], in which case we are finding the median of a sequence in linear time. Algorithm 3.6. Finding the kth smallest element. Input. A sequence S of n elements drawn from a linearly ordered set and an integer k, 1 ≤ k ≤ n. Output. The kth smallest element in S. Method. We use the recursive procedure SELECT in Fig. 3.10. ☐ Let us examine Algorithm 3.6 intuitively to see why it works. The basic idea is to partition the given sequence about some element m into three subsequences S₁, S., S₁ such that S, contains all elements less than m, S, all Strictly speaking, the kth smallest of a sequence a₁. da, is an element b in the sequence such that there are at most k - 1 values for i for which a,
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
I am learning the Algorithm for Order Statistics with the Select Recursive Procedure as shown in the pictures. In the algorithm, we separate out n into separate sequences of 5 elements each or n/5. I was wondering if the same algorithm would work if you did n/6, n/7, or n/10 instead and why. Thank you.
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 2 steps
Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education