transpose graph

Posted by rana123 on Stack Overflow See other posts from Stack Overflow or by rana123
Published on 2010-05-08T13:18:57Z Indexed on 2010/05/08 13:28 UTC
Read the original article Hit count: 133

Filed under:

how can i write program in java to find the transpose of the graph G, where the input and the output of the program are represented as adjacency list structure. for example:
input:
1>2>3>4>1
outout:
1>4>3>2>

© Stack Overflow or respective owner

Related posts about java