Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Problem 2 (10 points). Given a sorted array A of size n, design an algorithm to check if there are two numbers in the array

image text in transcribedimage text in transcribed

Problem 2 (10 points). Given a sorted array A of size n, design an algorithm to check if there are two numbers in the array whose sum is 0 . That is, decide whether there are two indices i,j{1,2,3,n} such that A[i]+A[j]=0. (The two indices can be the same; thus if the array contains the number 0 , we should output "yes".) Example: if the input is (8,5,2,1,4,6,8,9), then the output is "yes" since (8)+8=0. If the input is (8,5,2,1,4,6,7,9), then the output is "no". (a) (2 points) How can we use the binary search algorithm as a black-box to design an O(nlgn) time algorithm? (b) (8 points) Design an O(n)-time algorithm for the problem. Problem 3 (12 points). Figure 1: Cycles in undirected and directed graphs. (1, 2, 5, 3) is a cycle in the undirected graph. (1,2,5,6,7,3) is a cycle in the directed graph. However, (1,2,5,8,3) is not a cycle in the directed graph. (a) (6 points) A cycle in an undirected graph G=(V,E) is a sequence of t3 different vertices v1,v2,,vt such that (vi,vi+1)E for every i=1,2,,t1 and (vt,v1)E. Given the linked-list representation of an undirected graph G=(V,E), design an O(n+m)-time algorithm to decide if G contains a cycle or not; if it contains a cycle, output one (you only need to output one cycle). (b) ( 6 points) A cycle in a directed graph G=(V,E) is a sequence of t2 different vertices v1,v2,,vt such that (vi,vi+1)E for every i=1,2,,t1 and (vt,v1)E. Given the linked-list representation of a directed graph G=(V,E), design an O(n+m)-time algorithm to decide if G contains a cycle or not; if it contains a cycle, output one (you only need to output one cycle). Remark In a cycle of a directed graph, the directions of the edges have to be consistent. So, converting a directed graph to a undirected graph and then using algorithm for (a) does not give you a correct algorithm for (b)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Semantics In Databases Second International Workshop Dagstuhl Castle Germany January 2001 Revised Papers Lncs 2582

Authors: Leopoldo Bertossi ,Gyula O.H. Katona ,Klaus-Dieter Schewe ,Bernhard Thalheim

2003rd Edition

3540009574, 978-3540009573

More Books

Students also viewed these Databases questions

Question

3. List ways to manage relationship dynamics

Answered: 1 week ago