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

Function InSucc

Trees/BST.C:104–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

102}
103
104struct Node *InSucc(struct Node *p)
105{
106 while (p && p->lchild != NULL)
107 p = p->lchild;
108 return p;
109}
110
111struct Node *Delete(struct Node *p, int key)
112{

Callers 1

DeleteFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected