#tree
Read more stories on Hashnode
Articles with this tag
Topic: Tree 1) Check for a balanced binary treeEasy Input: 1 / 2 \ 3 Output: 0 Explanation: The max difference in height of...
Topic: Tree 1) Level order traversal in Spiral formEasy2) Zig Zag TraversalEasy3) Maximum Width of Binary TreeEasy4) Left view of Binary TreeEasy5)...
Topic: Tree 1) Level order traversal Line by LineEasy 1 / \ 2 3 / \ / \ 4 5 6 7 \ 8 ...
Topic: Tree 1) Recursive Post Order TraversalEasy2) Iterative Pre-Order Traversal - GFGMedium RECURSION Input: 19 / \ 10 8 ...
Topic: Tree 1) Size of Binary TreeEasy2) Minimum element in BSTEasy3) Sum of Binary TreeEasy4) Count leaves in a binary treeEasy5) Count Non-leaf...
Topic: Tree 1) Level order traversal updatedEasy Input: 1 / 4 / \ 4 2 Output:1 $ 4 $ 4 2 $ import...