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

Class BSTNode

CPP/Trees/BinarySearchTree.cpp:5–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3//Comments shown are in a way that alternative syntaxes can also work
4
5struct BSTNode
6{
7 int data;
8 BSTNode* left;
9 BSTNode* right;
10};
11
12BSTNode* GetNewNode(int data)
13{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected