Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
97
struct Node *InPre(struct Node *p)
98
{
99
while (p && p->rchild != NULL)
100
p = p->rchild;
101
return p;
102
}
103
104
struct Node *InSucc(struct Node *p)
105
{
Callers
1
Delete
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected