In this post we will check “Striver’s Tree Series : Tree Data Structure”. What is a tree data structure? There
Continue readingCategory: Binary Tree
How to construct a Binary Tree using different traversals?
Problem Statement: Requirements are needed to construct a unique binary tree. In this article, we will understand the traversals required to
Continue readingCheck for Children Sum Property in a Binary Tree
Problem Statement: Children Sum Property in a Binary Tree. Write a program that converts any binary tree to one that follows
Continue readingFlatten Binary Tree to Linked List
Problem Statement: Flatten Binary Tree To Linked List. Write a program that flattens a given binary tree to a linked list.
Continue readingMaximum Width of a Binary Tree
Problem Statement: Write a program to find the Maximum Width of A Binary Tree. Examples: Problem Description: The maximum width of
Continue readingPrint Root to Node Path in a Binary Tree
Problem Statement: Print Root to Node Path In A Binary Tree. Write a program to print path from root to
Continue readingPreorder Inorder Postorder Traversals in One Traversal
Problem Statement: Preorder Inorder Postorder Traversals in One Traversal. Write a program to print Preorder, Inorder, and Postorder traversal of the
Continue readingPost-Order Traversal Of Binary Tree
Problem Statement: Postorder Traversal of a binary tree. Write a program for the postorder traversal of a binary tree. Example: Disclaimer:
Continue readingVertical Order Traversal of Binary Tree
Problem Statement: Vertical Order Traversal Of A Binary Tree. Write a program for Vertical Order Traversal order of a Binary Tree.
Continue readingBoundary Traversal of a Binary Tree
Problem Statement: BoundaryTraversal of a binary tree. Write a program for the Anti-Clockwise Boundary traversal of a binary tree. Example: Solution
Continue reading