We are given an array that contains N numbers. We want to determine if there aretwo | StudySoup

Textbook Solutions for Data Structures and Algorithm Analysis in Java

Chapter 7 Problem 7.53

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

Step 1 of 4)

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.

Step 2 of 7)

Visible to paid subscribers only

Step 3 of 7)

Visible to paid subscribers only

Subscribe to view the
full solution

Title Data Structures and Algorithm Analysis in Java 3 
Author Mark A. Weiss
ISBN 9780132576277

We are given an array that contains N numbers. We want to determine if there aretwo

Chapter 7 textbook questions

×

Login

Organize all study tools for free

Or continue with
×

Register

Sign up for access to all content on our site!

Or continue with

Or login if you already have an account

×

Reset password

If you have an active account we’ll send you an e-mail for password recovery

Or login if you have your password back