Given an integer N, the task is to generate a perfect binary tree with height N such that each node has a value that is… Read More
Tag Archives: tree-level-order
Given an N-ary Tree. The task is to print the level order traversal of the tree where each level will be in a new line.… Read More
Given an n-ary Tree having N nodes numbered from 1 to N, the task is to print a list of nodes containing 0, 1, 2,… Read More
A binary tree is a tree data structure in which each node has at most two child nodes, referred to as the left and right… Read More
Given the root of a binary tree in which all nodes has values either 0 or 1, the task is to check if the level-wise… Read More
Given a binary tree and an integer K, the task is to print the level order traversal in such a way that first K levels… Read More
Given a binary tree having N nodes, the task is to find the level having the maximum number of setbits. Note: If two levels have… Read More
Given a binary tree and an integer X, the task is to find out all the occurrences of X in the given tree, and print… Read More
Given a binary tree and an integer K, the task is to print all the integers at the Kth level in the tree from left… Read More
Given a Binary Tree, the task is to find the difference of the sum of leaf nodes at the odd level and even level of… Read More
Given an N-array tree root and an integer K, the task is to print all the cousins of node K. Note: Two nodes are considered… Read More
Given a binary tree, the task is to find the node whose children have maximum Sibling product in the given Binary Tree. If there are… Read More
Given a Binary Tree, the task is to find the sum of leaf nodes at every level of the given tree. Examples: Input: Output:0063012Explanation:Level 1:… Read More
Given the root node of an N-ary tree and an integer K, the task is to convert the given tree into adjacency list representation and… Read More
Given a Generic Tree consisting of N nodes, the task is to find the ZigZag Level Order Traversal of the given tree. Examples: Input: Output:13… Read More