vote up 1 vote down star
2

I have a graph with n nodes as an adjacency matrix.

Is it possible to detect a sink in less than O(n) time?

If yes, how? If no, can you prove it?

Sink: a node that has incoming edges from all other nodes and no outgoing edges.

flag

Do you mean O(E) time? You probably have to inspect (almost) all the edges for some case, and the # of edges is up to N^2. – v3 May 11 at 20:35
No, I mean O(|V|) - you don't need to inspect all edges. – flybywire May 12 at 8:31

4 Answers

vote up 1 vote down

In the case of a general directed graph, no, and I don't think it needs a formal proof. At best, detecting a sink requires you to either identify the node and check that it has no outgoing edges, or inspect every other node and see that none of them have connections coming from it. In practice, you combine the two in an elimination algorithm, but there is no shortcut.

By the way, there is disagreement over the definition of sink. It's not usual to require all other nodes connect to the sink, because you can have multiple sinks. For instance, the bottom row in this diagram are all sinks, and the top row are all sources. However, it allows you to reduce the complexity to O(n). See here for some slightly garbled discussion.

link|flag
vote up 1 vote down

This page answers your exact question.

link|flag
That page shows how to do it in O(n) – Mark May 11 at 15:06
vote up 2 vote down

Suppose to the contrary that there exists an algorithm that queries fewer than (n-2)/2 edges, and let the adversary answer these queries arbitrarily. By the Pigeonhole Principle, there exist (at least) two nodes v, w that are not an endpoint of any edge queried. If the algorithm outputs v, then the adversary makes it wrong by putting in every edge with sink w, and similarly if the algorithm outputs w.

link|flag
This can be improved to n-1 with some case analysis. – Dave May 15 at 23:55
vote up 0 vote down

Yes it is possible , i found it here.

http://supermanhelp.com/view_ques.aspx?data=633941324939340000.txt

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.