Sort the sequence 3, 1, 4, 1, 5, 9, 2, 6, 5 using insertion sort
Read moreTextbook Solutions for Data Structures and Algorithm Analysis in Java
Question
We are given an array that contains N numbers. We want to determine if there aretwo numbers whose sum equals a given number K. For instance, if the input is 8, 4,1, 6, and K is 10, then the answer is yes (4 and 6). A number may be used twice.Do the following:a. Give an O(N2) algorithm to solve this problem.b. Give an O(N logN) algorithm to solve this problem. (Hint: Sort the items first.After that is done, you can solve the problem in linear time.)c. Code both solutions and compare the running times of your algorithms.
Solution
The first step in solving 7 problem number 53 trying to solve the problem we have to refer to the textbook question: We are given an array that contains N numbers. We want to determine if there aretwo numbers whose sum equals a given number K. For instance, if the input is 8, 4,1, 6, and K is 10, then the answer is yes (4 and 6). A number may be used twice.Do the following:a. Give an O(N2) algorithm to solve this problem.b. Give an O(N logN) algorithm to solve this problem. (Hint: Sort the items first.After that is done, you can solve the problem in linear time.)c. Code both solutions and compare the running times of your algorithms.
From the textbook chapter Sorting you will find a few key concepts needed to solve this.
Visible to paid subscribers only
Step 3 of 7)Visible to paid subscribers only
full solution