Definition for undirected graph. class UndirectedGraphNode { int label; List neighbors; UndirectedGraphNode(int x) { label = x; neighbors = new ArrayList (); } };
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected