Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
4
using namespace std;
5
6
class Node
7
{
8
public:
9
Node *lchild;
10
int data;
11
Node *rchild;
12
};
13
14
class BST
15
{
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected