Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
104
struct Node *InSucc(struct Node *p)
105
{
106
while (p && p->lchild != NULL)
107
p = p->lchild;
108
return p;
109
}
110
111
struct Node *Delete(struct Node *p, int key)
112
{
Callers
1
Delete
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected