Given a set of n numbers, we wish to find the i largest in sorted order using a comparison-based algorithm. Find the algorithm that implements each of the following methods with the best asymptotic worst-case running time, and analyze the running times of the algorithms in terms of n and i. a. Sort the numbers, and list the i largest. Group of answer choices 1. O(ni) 2. O(nlg(n)) 3. O(n + ilg(n)) 4. O(i + nlg(n)) 5. O(n + ilg(i)) b. Build a max-priority queue from the numbers, and call EXTRACT-MAX i times. Group of answer choices 1. O(i + nlg(n)) 2. O(n + ilg(n)) 3. O(nlg(n)) 4. O(ni) 5. O(n + ilg(i)) c. Use an order-statistic algorithm to find the ith largest number, partition around that number, and sort the i largest numbers. Group of answer choices 1. O(n + ilg(i)) 2. O(n + ilg(n)) 3. O(nlg(n)) 4. O(i + nlg(n)) 5. O(ni)
Given a set of n numbers, we wish to find the i largest in sorted order using a comparison-based algorithm. Find the algorithm that implements each of the following methods with the best asymptotic worst-case running time, and analyze the running times of the algorithms in terms of n and i. a. Sort the numbers, and list the i largest. Group of answer choices 1. O(ni) 2. O(nlg(n)) 3. O(n + ilg(n)) 4. O(i + nlg(n)) 5. O(n + ilg(i)) b. Build a max-priority queue from the numbers, and call EXTRACT-MAX i times. Group of answer choices 1. O(i + nlg(n)) 2. O(n + ilg(n)) 3. O(nlg(n)) 4. O(ni) 5. O(n + ilg(i)) c. Use an order-statistic algorithm to find the ith largest number, partition around that number, and sort the i largest numbers. Group of answer choices 1. O(n + ilg(i)) 2. O(n + ilg(n)) 3. O(nlg(n)) 4. O(i + nlg(n)) 5. O(ni)
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
Given a set of n numbers, we wish to find the i largest in sorted order using a comparison-based algorithm . Find the algorithm that implements each of the following methods with the best asymptotic worst-case running time, and analyze the running times of the algorithms in terms of n and i.
a. Sort the numbers, and list the i largest.
Group of answer choices
1. O(ni)
2. O(nlg(n))
3. O(n + ilg(n))
4. O(i + nlg(n))
5. O(n + ilg(i))
b. Build a max-priority queue from the numbers, and call EXTRACT-MAX i times.
Group of answer choices
1. O(i + nlg(n))
2. O(n + ilg(n))
3. O(nlg(n))
4. O(ni)
5. O(n + ilg(i))
c. Use an order-statistic algorithm to find the ith largest number, partition around that number, and sort the i largest numbers.
Group of answer choices
1. O(n + ilg(i))
2. O(n + ilg(n))
3. O(nlg(n))
4. O(i + nlg(n))
5. O(ni)
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 4 steps
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
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