Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ findKthMin
Function
findKthMin
CPP/Trees/kthMinimumElement.cpp:41–47 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
39
}
40
41
int findKthMin(struct node *root, int k)
42
{
43
vector<struct node *> nodes;
44
saveNode(root, nodes);
45
46
return nodes[k - 1]->key;
47
}
48
49
int main()
50
{
Callers
1
main
Function · 0.85
Calls
1
saveNode
Function · 0.85
Tested by
no test coverage detected