Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ leftView
Function
leftView
left view of tree.cpp:41–45 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
39
40
41
void leftView(struct Node *root)
42
{
43
int max_level = 0;
44
leftViewUtil(root, 1, &max_level);
45
}
46
47
int main()
48
{
Callers
1
main
Function · 0.70
Calls
1
leftViewUtil
Function · 0.70
Tested by
no test coverage detected