MCPcopy Create free account
hub / github.com/Seogeurim/CS-study / Node

Class Node

contents/algorithm/code/DijkstraTest.java:192–200  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190 }
191
192 static class Node {
193 int index;
194 int distance;
195
196 public Node(int index, int distance) {
197 this.index = index;
198 this.distance = distance;
199 }
200 }
201}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected