MCPcopy Create free account
hub / github.com/anupam-kumar-krishnan/Competitive_Programming / Tree

Method Tree

All Data Structures/TREE/Tree.cpp:10–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8
9public:
10 Tree() { root = NULL; }
11 void CreateTree();
12 void Preorder() { Preorder(root); }
13 void Preorder(Node *p);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected