MCPcopy 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
41void leftView(struct Node *root)
42{
43 int max_level = 0;
44 leftViewUtil(root, 1, &max_level);
45}
46
47int main()
48{

Callers 1

mainFunction · 0.70

Calls 1

leftViewUtilFunction · 0.70

Tested by

no test coverage detected