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

Class Node

All Data Structures/TREE/BST.cpp:6–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4using namespace std;
5
6class Node
7{
8public:
9 Node *lchild;
10 int data;
11 Node *rchild;
12};
13
14class BST
15{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected