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

Method InPre

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

Source from the content-addressed store, hash-verified

216}
217
218Node *BST::InPre(Node *p)
219{
220 while (p && p->rchild != nullptr)
221 {
222 p = p->rchild;
223 }
224 return p;
225}
226
227Node *BST::InSucc(Node *p)
228{

Callers 1

mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected