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

Method Node

15. Binary Tree/02 Tree Class/02.cpp:17–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15 Node* right;
16
17 Node(int d)
18 {
19 data=d;
20 left=NULL;
21 right=NULL;
22 }
23};
24
25int main()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected