ProDeveloperTutorial.com
  • DSA
    • Algorithms and Data Structures Tutorial
    • Crack The Coding Interview (DSA Sheet)
  • Coding Languages
    • C++ Tutorial
    • C language Tutorial
    • Linux Shell Scripting Tutorial
    • GIT Tutorial
    • Linux System Calls Tutorials
    • Shell Script Tutorial
  • System Design Tutorial

ProDeveloperTutorial.com

  • DSA
    • Algorithms and Data Structures Tutorial
    • Crack The Coding Interview (DSA Sheet)
  • Coding Languages
    • C++ Tutorial
    • C language Tutorial
    • Linux Shell Scripting Tutorial
    • GIT Tutorial
    • Linux System Calls Tutorials
    • Shell Script Tutorial
  • System Design Tutorial
ProDeveloperTutorial.com

What are You Looking For?

  • Coding Interview Questions
  • C++ Tutorial
  • DataStructure and Algorithms
  • C Language Tutorial
ProDeveloperTutorial
onDecember 26, 2024

Check if two Binary Trees are Isomorphic

Question: Given a binary tree root node, check if the tree is a isomorphic tree. 2 trees are called isomorphic to each other, if they have…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Check if Binary Tree is Foldable Tree

Question: Given a binary tree root node, check if the tree is a foldable tree. Example: Consider the image given below We can see that, the…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Find Maximum or Minimum in Binary Tree

Problem Statement: Given a binary tree root node, you need to find the minimum and maximum value of the nodes. Consider the image below:…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Get Sum of all Leaf Nodes in Binary Tree

Problem Statement: Given a binary tree root node, you need to find the sum of all the leaf nodes. Consider the image below: The leaf nodes are…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Get Average of all nodes in Binary Tree

Question: Given a binary tree root node, get the average of all nodes in Binary Tree Solution: The sum of all the nodes is 121 Total number of…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Get Sum of all nodes formed from Root to Leaf Path

Question: Given a binary tree root node, get the sum of the values of all the nodes formed from root to the leaf node. Solution: From the…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Check if given two nodes are siblings to each other in Binary Tree

Question: Given a binary tree root node and 2 node value, check if those 2 nodes are siblings. Solution: If we send the node value as 7 and…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Find Sibling node of a given node value in Binary Tree

Question: Given a binary tree root node and a node value, get the sibling of that node. Solution: If the input node value is 10, its sibling…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Check if given Binary Tree is BST

Question: Given a binary tree root node, check if it is a Binary Search Tree Solution: A Binary Tree is a BST if it satisfy below 2…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Find Parent of a given node value in Binary Tree

Question: Given a binary tree node and root node, get the parent node of that node. Solution: Solution is very simple. Before we go to the…
Discover More

Posts pagination

Previous 1 … 47 48 49 … 70 Next
ProDeveloperTutorial.com
Tutorials and Programming Solutions
  • DSA
    • Algorithms and Data Structures Tutorial
    • Crack The Coding Interview (DSA Sheet)
  • Coding Languages
    • C++ Tutorial
    • C language Tutorial
    • Linux Shell Scripting Tutorial
    • GIT Tutorial
    • Linux System Calls Tutorials
    • Shell Script Tutorial
  • System Design Tutorial
© 2024 — ProDeveloperTutorial. All Rights Reserved.