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

Function InPre

Trees/BST.C:97–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

95}
96
97struct Node *InPre(struct Node *p)
98{
99 while (p && p->rchild != NULL)
100 p = p->rchild;
101 return p;
102}
103
104struct Node *InSucc(struct Node *p)
105{

Callers 1

DeleteFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected