MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / CreateEdge

Class CreateEdge

Programs/BellmanFord.java:6–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4
5 // CreateGraph - it consists of edges
6 class CreateEdge {
7 int s, d, w;
8
9 CreateEdge() {
10 s = d = w = 0;
11 }
12 };
13
14 int V, E;
15 CreateEdge edge[];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected