I am struggling with this algoritm question:
How would I write a theta(m+n) algorithm that prints the in-degree and the out-degree of every vertex in an m-edge, n-vertex directed graph where the directed graph is represented using adjacency lists.
|
I am struggling with this algoritm question: How would I write a |
||||
|
Maintain a hash table for each node and initialise it to zero. Do BFS ,when ever you hit a vertex adjacent to present vertex increment value of vertex(that is being hit) in hash table by one .Above method is for in-degree of vertex .For out degree do the same thing(that is ,when ever you have node connected to it increment its value by one and iterate (BFS)) . |
|||
|
|
|
Note: For brevity I am using "O" in place of theta. No need for BFS. In the case where your adjacency lists consist of a list of directed edges, maintain two vertex-count mappings, one for in-degrees, and one for out-degrees. Each vertex should be initially mapped to zero. Then iterate through each edge, Example codes:
You can use any associative map for the vertex-count mappings. If you use a hashmap, you will get amortized constant time operations, and it will have no bearing on the overall algorithm's complexity. However, if you know that the vertices are in a range with no gaps, such as [1,n], then you can use an array of counts, with the index representing the vertex that has its value. So:
This plainly gives you constant time mapping operations. |
||||
|
|
in_degree(v) = 0. – didierc Nov 19 '12 at 17:29