楊村長 NodeJS與服務(wù)器端
? System.out.println("DFS current node: " + start.getNo() + " value: " + start.getValue());
? ? ? ?for (Node adjNode : adjacencyList.get(start)) {
? ? ? ? ? ?if (!marked[adjNode.getNo()]) {
? ? ? ? ? ? ? ?// 沒有被訪問過
? ? ? ? ? ? ? ?helper(adjNode);
? ? ? ? ? ?}
? ? ? ?}
? ?}
? ?public static void main(String[] args) {
? ? ? ?// 0 - 1 - 4
標簽: