MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / Node

Method Node

Trees/burningTree.cpp:12–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10 Node *right;
11
12 Node (int val) {
13 data = val;
14 left = right = NULL;
15 }
16};
17
18

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected