{"id":"f6cc9f40-4686-4eec-8515-aac2040d6d3c","name":"Is Balanced Tree","description":"1. You are given a partially written BinaryTree class.\r\n2. You are required to check if the tree is balanced. A binary tree is balanced if for every node the gap between height's of it's left and right subtree is not more than 1.\r\n3. Input is managed for you. \r\n\r\nNote -> Please refer the question video for clarity.","inputFormat":"Input is managed for you.","outputFormat":"true if the tree is balanced, false otherwise","constraints":"Time complexity must be O(n)\r\nSpace should not be more than required for recursion (call-stack)","sampleCode":{"cpp":{"code":"#include <iostream>\n#include <vector>\n#include <bits/stdc++.h>\n\nusing namespace std;\n\nclass Node\n{\npublic:\n int data=0;\n Node *left = nullptr;\n Node *right = nullptr;\n Node(int data)\n {\n this->data = data;\n }\n};\n\n class Pair {\n public:\n Node *node=nullptr;\n int state=0;\n\n Pair(Node *node, int state) {\n this->node = node;\n this->state = state;\n }\n };\n\nint idx = 0;\nNode *constructTree(vector<int> &arr)\n{\n\n if (idx == arr.size() || arr[idx] == -1)\n {\n idx++;\n return nullptr;\n }\n Node *node = new Node(arr[idx++]);\n node->left = constructTree(arr);\n node->right = constructTree(arr);\n return node;\n}\n\n//Display function\nvoid display(Node *node)\n{\n if (node == nullptr)\n return;\n string str = \"\";\n str += node->left != nullptr ? to_string(node->left->data) : \".\";\n str += \" <- \" + to_string(node->data) + \" -> \";\n str += node->right != nullptr ? to_string(node->right->data) : \".\";\n cout << str << endl;\n\n display(node->left);\n display(node->right);\n}\n\n\n//Height function\nint height(Node *node)\n{\n return node == nullptr ? -1 : max(height(node->left), height(node->right)) + 1; \n}\n\n int isbalance(Node *node)\n {\n // write your code here \n }\n\n\nint main(){\n int n;\n cin>>n;\n \n vector<int> arr(n,0);\n for(int i = 0; i < n; i++) {\n string tmp;\n cin>>tmp;\n if (tmp==\"n\") {\n arr[i] = -1;\n } else {\n arr[i] = stoi(tmp);\n }\n }\n \n \n Node *root = constructTree(arr);\n \n int r = isbalance(root);\n if(isbal == 1)\n cout << \"true\";\n else \n cout<<\"false\";\n}"},"java":{"code":"import java.io.*;\r\nimport java.util.*;\r\n\r\npublic class Main {\r\n public static class Node {\r\n int data;\r\n Node left;\r\n Node right;\r\n\r\n Node(int data, Node left, Node right) {\r\n this.data = data;\r\n this.left = left;\r\n this.right = right;\r\n }\r\n }\r\n\r\n public static class Pair {\r\n Node node;\r\n int state;\r\n\r\n Pair(Node node, int state) {\r\n this.node = node;\r\n this.state = state;\r\n }\r\n }\r\n\r\n public static Node construct(Integer[] arr) {\r\n Node root = new Node(arr[0], null, null);\r\n Pair rtp = new Pair(root, 1);\r\n\r\n Stack<Pair> st = new Stack<>();\r\n st.push(rtp);\r\n\r\n int idx = 0;\r\n while (st.size() > 0) {\r\n Pair top = st.peek();\r\n if (top.state == 1) {\r\n idx++;\r\n if (arr[idx] != null) {\r\n top.node.left = new Node(arr[idx], null, null);\r\n Pair lp = new Pair(top.node.left, 1);\r\n st.push(lp);\r\n } else {\r\n top.node.left = null;\r\n }\r\n\r\n top.state++;\r\n } else if (top.state == 2) {\r\n idx++;\r\n if (arr[idx] != null) {\r\n top.node.right = new Node(arr[idx], null, null);\r\n Pair rp = new Pair(top.node.right, 1);\r\n st.push(rp);\r\n } else {\r\n top.node.right = null;\r\n }\r\n\r\n top.state++;\r\n } else {\r\n st.pop();\r\n }\r\n }\r\n\r\n return root;\r\n }\r\n\r\n public static void display(Node node) {\r\n if (node == null) {\r\n return;\r\n }\r\n\r\n String str = \"\";\r\n str += node.left == null ? \".\" : node.left.data + \"\";\r\n str += \" <- \" + node.data + \" -> \";\r\n str += node.right == null ? \".\" : node.right.data + \"\";\r\n System.out.println(str);\r\n\r\n display(node.left);\r\n display(node.right);\r\n }\r\n \r\n public static void main(String[] args) throws Exception {\r\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\r\n int n = Integer.parseInt(br.readLine());\r\n Integer[] arr = new Integer[n];\r\n String[] values = br.readLine().split(\" \");\r\n for (int i = 0; i < n; i++) {\r\n if (values[i].equals(\"n\") == false) {\r\n arr[i] = Integer.parseInt(values[i]);\r\n } else {\r\n arr[i] = null;\r\n }\r\n }\r\n\r\n Node root = construct(arr);\r\n \r\n // write your code here\r\n }\r\n\r\n}"},"python":{"code":"import math\nclass Node:\n isbal = True\n def __init__(self,data,left,right):\n self.data = data\n self.left = None\n self.right = None\nclass Pair:\n def __init__(self,node,state):\n self.node = node\n self.state = state\n\ndef construct(arr):\n root=Node(arr[0],None,None)\n rtp=Pair(root,1);\n \n st=[]\n st.append(rtp);\n \n idx=0;\n n = len(arr)\n while(len(st)>0):\n top=st[-1];\n if top.state==1:\n idx+=1\n st[-1].state+=1\n if(arr[idx]!=-1):\n top.node.left = Node(arr[idx], None, None);\n lp = Pair(top.node.left, 1);\n st.append(lp);\n else:\n top.node.left=None;\n elif top.state==2:\n idx+=1\n st[-1].state+=1\n if(arr[idx]!=-1):\n top.node.right = Node(arr[idx], None, None);\n rp = Pair(top.node.right, 1);\n st.append(rp);\n else:\n top.node.right=None;\n else:\n st.pop()\n return root;\n\ndef height(node):\n if(node == None):\n return -1\n else:\n ans = max(height(node.left),height(node.right))+1\n return ans\n\n \n \ndef isbalance(node):\n # write your code here\n \n\nn = int(input())\nst = input()\narr = [0]*n\narr = list(map(int,st.replace(\"n\",\"-1\").split(\" \")));\n\n\n\nroot = construct(arr)\nisbalance(root)\n\nif(Node.isbal == True):\n print(\"true\")\nelse:\n print(\"false\")"}},"points":10,"difficulty":"easy","sampleInput":"21\r\n50 25 12 n n 37 30 n n 51 n n 75 62 60 n n 70 n n n","sampleOutput":"false","questionVideo":"https://www.youtube.com/embed/9X1TYiipolA","hints":[],"associated":[{"id":"4dfbf09a-10a0-4c3d-abbe-36e57d39d75b","name":"Which of these lines will generate the wrong output?","slug":"which-of-these-lines-will-generate-the-wrong-output","type":4},{"id":"87375fa0-89f7-40a8-b8ec-6aad9a798d36","name":"A binary tree is balanced if for every node the gap between heights of its left and right subtree is:","slug":"a-binary-tree-is-balanced-if-for-every-node-the-gap-between-heights-of-its-left-and-right-subtree-is","type":4},{"id":"9d7c7965-4763-4ca5-bff2-841be3adb61f","name":"What will be the space complexity of the problem if we have not used any extra data structure?","slug":"what-will-be-the-space-complexity-of-the-problem-if-we-have-not-used-any-extra-data-structure","type":4},{"id":"ddc14dcb-825f-433a-8930-9ac347d5f158","name":"What height will be returned if we encounter a null node?","slug":"what-height-will-be-returned-if-we-encounter-a-null-node","type":4}],"solutionSeen":false,"tags":[],"meta":{"path":[{"id":0,"name":"home"},{"id":"0c54b191-7b99-4f2c-acb3-e7f2ec748b2a","name":"Data Structures and Algorithms","slug":"data-structures-and-algorithms","type":0},{"id":"b042fe97-356f-41ed-80fd-abacd61fc234","name":"Binary Tree For Beginners","slug":"binary-tree-for-beginners","type":0},{"id":"87f5e45f-fa48-4975-b4e9-d03a7f2cadd6","name":"Is Balanced Tree","slug":"is-balanced-tree","type":1}],"next":{"id":"7ad43f04-9af1-450a-94e2-68895deabe50","name":"Is Balanced Tree?","type":3,"slug":"is-balanced-tree"},"prev":{"id":"f36d3b73-2af2-41ce-9ea5-f7f5223f0dcf","name":"Largest Bst Subtree","type":3,"slug":"largest-bst-subtree"}}}

Is Balanced Tree

1. You are given a partially written BinaryTree class. 2. You are required to check if the tree is balanced. A binary tree is balanced if for every node the gap between height's of it's left and right subtree is not more than 1. 3. Input is managed for you. Note -> Please refer the question video for clarity.

{"id":"f6cc9f40-4686-4eec-8515-aac2040d6d3c","name":"Is Balanced Tree","description":"1. You are given a partially written BinaryTree class.\r\n2. You are required to check if the tree is balanced. A binary tree is balanced if for every node the gap between height's of it's left and right subtree is not more than 1.\r\n3. Input is managed for you. \r\n\r\nNote -> Please refer the question video for clarity.","inputFormat":"Input is managed for you.","outputFormat":"true if the tree is balanced, false otherwise","constraints":"Time complexity must be O(n)\r\nSpace should not be more than required for recursion (call-stack)","sampleCode":{"cpp":{"code":"#include <iostream>\n#include <vector>\n#include <bits/stdc++.h>\n\nusing namespace std;\n\nclass Node\n{\npublic:\n int data=0;\n Node *left = nullptr;\n Node *right = nullptr;\n Node(int data)\n {\n this->data = data;\n }\n};\n\n class Pair {\n public:\n Node *node=nullptr;\n int state=0;\n\n Pair(Node *node, int state) {\n this->node = node;\n this->state = state;\n }\n };\n\nint idx = 0;\nNode *constructTree(vector<int> &arr)\n{\n\n if (idx == arr.size() || arr[idx] == -1)\n {\n idx++;\n return nullptr;\n }\n Node *node = new Node(arr[idx++]);\n node->left = constructTree(arr);\n node->right = constructTree(arr);\n return node;\n}\n\n//Display function\nvoid display(Node *node)\n{\n if (node == nullptr)\n return;\n string str = \"\";\n str += node->left != nullptr ? to_string(node->left->data) : \".\";\n str += \" <- \" + to_string(node->data) + \" -> \";\n str += node->right != nullptr ? to_string(node->right->data) : \".\";\n cout << str << endl;\n\n display(node->left);\n display(node->right);\n}\n\n\n//Height function\nint height(Node *node)\n{\n return node == nullptr ? -1 : max(height(node->left), height(node->right)) + 1; \n}\n\n int isbalance(Node *node)\n {\n // write your code here \n }\n\n\nint main(){\n int n;\n cin>>n;\n \n vector<int> arr(n,0);\n for(int i = 0; i < n; i++) {\n string tmp;\n cin>>tmp;\n if (tmp==\"n\") {\n arr[i] = -1;\n } else {\n arr[i] = stoi(tmp);\n }\n }\n \n \n Node *root = constructTree(arr);\n \n int r = isbalance(root);\n if(isbal == 1)\n cout << \"true\";\n else \n cout<<\"false\";\n}"},"java":{"code":"import java.io.*;\r\nimport java.util.*;\r\n\r\npublic class Main {\r\n public static class Node {\r\n int data;\r\n Node left;\r\n Node right;\r\n\r\n Node(int data, Node left, Node right) {\r\n this.data = data;\r\n this.left = left;\r\n this.right = right;\r\n }\r\n }\r\n\r\n public static class Pair {\r\n Node node;\r\n int state;\r\n\r\n Pair(Node node, int state) {\r\n this.node = node;\r\n this.state = state;\r\n }\r\n }\r\n\r\n public static Node construct(Integer[] arr) {\r\n Node root = new Node(arr[0], null, null);\r\n Pair rtp = new Pair(root, 1);\r\n\r\n Stack<Pair> st = new Stack<>();\r\n st.push(rtp);\r\n\r\n int idx = 0;\r\n while (st.size() > 0) {\r\n Pair top = st.peek();\r\n if (top.state == 1) {\r\n idx++;\r\n if (arr[idx] != null) {\r\n top.node.left = new Node(arr[idx], null, null);\r\n Pair lp = new Pair(top.node.left, 1);\r\n st.push(lp);\r\n } else {\r\n top.node.left = null;\r\n }\r\n\r\n top.state++;\r\n } else if (top.state == 2) {\r\n idx++;\r\n if (arr[idx] != null) {\r\n top.node.right = new Node(arr[idx], null, null);\r\n Pair rp = new Pair(top.node.right, 1);\r\n st.push(rp);\r\n } else {\r\n top.node.right = null;\r\n }\r\n\r\n top.state++;\r\n } else {\r\n st.pop();\r\n }\r\n }\r\n\r\n return root;\r\n }\r\n\r\n public static void display(Node node) {\r\n if (node == null) {\r\n return;\r\n }\r\n\r\n String str = \"\";\r\n str += node.left == null ? \".\" : node.left.data + \"\";\r\n str += \" <- \" + node.data + \" -> \";\r\n str += node.right == null ? \".\" : node.right.data + \"\";\r\n System.out.println(str);\r\n\r\n display(node.left);\r\n display(node.right);\r\n }\r\n \r\n public static void main(String[] args) throws Exception {\r\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\r\n int n = Integer.parseInt(br.readLine());\r\n Integer[] arr = new Integer[n];\r\n String[] values = br.readLine().split(\" \");\r\n for (int i = 0; i < n; i++) {\r\n if (values[i].equals(\"n\") == false) {\r\n arr[i] = Integer.parseInt(values[i]);\r\n } else {\r\n arr[i] = null;\r\n }\r\n }\r\n\r\n Node root = construct(arr);\r\n \r\n // write your code here\r\n }\r\n\r\n}"},"python":{"code":"import math\nclass Node:\n isbal = True\n def __init__(self,data,left,right):\n self.data = data\n self.left = None\n self.right = None\nclass Pair:\n def __init__(self,node,state):\n self.node = node\n self.state = state\n\ndef construct(arr):\n root=Node(arr[0],None,None)\n rtp=Pair(root,1);\n \n st=[]\n st.append(rtp);\n \n idx=0;\n n = len(arr)\n while(len(st)>0):\n top=st[-1];\n if top.state==1:\n idx+=1\n st[-1].state+=1\n if(arr[idx]!=-1):\n top.node.left = Node(arr[idx], None, None);\n lp = Pair(top.node.left, 1);\n st.append(lp);\n else:\n top.node.left=None;\n elif top.state==2:\n idx+=1\n st[-1].state+=1\n if(arr[idx]!=-1):\n top.node.right = Node(arr[idx], None, None);\n rp = Pair(top.node.right, 1);\n st.append(rp);\n else:\n top.node.right=None;\n else:\n st.pop()\n return root;\n\ndef height(node):\n if(node == None):\n return -1\n else:\n ans = max(height(node.left),height(node.right))+1\n return ans\n\n \n \ndef isbalance(node):\n # write your code here\n \n\nn = int(input())\nst = input()\narr = [0]*n\narr = list(map(int,st.replace(\"n\",\"-1\").split(\" \")));\n\n\n\nroot = construct(arr)\nisbalance(root)\n\nif(Node.isbal == True):\n print(\"true\")\nelse:\n print(\"false\")"}},"points":10,"difficulty":"easy","sampleInput":"21\r\n50 25 12 n n 37 30 n n 51 n n 75 62 60 n n 70 n n n","sampleOutput":"false","questionVideo":"https://www.youtube.com/embed/9X1TYiipolA","hints":[],"associated":[{"id":"4dfbf09a-10a0-4c3d-abbe-36e57d39d75b","name":"Which of these lines will generate the wrong output?","slug":"which-of-these-lines-will-generate-the-wrong-output","type":4},{"id":"87375fa0-89f7-40a8-b8ec-6aad9a798d36","name":"A binary tree is balanced if for every node the gap between heights of its left and right subtree is:","slug":"a-binary-tree-is-balanced-if-for-every-node-the-gap-between-heights-of-its-left-and-right-subtree-is","type":4},{"id":"9d7c7965-4763-4ca5-bff2-841be3adb61f","name":"What will be the space complexity of the problem if we have not used any extra data structure?","slug":"what-will-be-the-space-complexity-of-the-problem-if-we-have-not-used-any-extra-data-structure","type":4},{"id":"ddc14dcb-825f-433a-8930-9ac347d5f158","name":"What height will be returned if we encounter a null node?","slug":"what-height-will-be-returned-if-we-encounter-a-null-node","type":4}],"solutionSeen":false,"tags":[],"meta":{"path":[{"id":0,"name":"home"},{"id":"0c54b191-7b99-4f2c-acb3-e7f2ec748b2a","name":"Data Structures and Algorithms","slug":"data-structures-and-algorithms","type":0},{"id":"b042fe97-356f-41ed-80fd-abacd61fc234","name":"Binary Tree For Beginners","slug":"binary-tree-for-beginners","type":0},{"id":"87f5e45f-fa48-4975-b4e9-d03a7f2cadd6","name":"Is Balanced Tree","slug":"is-balanced-tree","type":1}],"next":{"id":"7ad43f04-9af1-450a-94e2-68895deabe50","name":"Is Balanced Tree?","type":3,"slug":"is-balanced-tree"},"prev":{"id":"f36d3b73-2af2-41ce-9ea5-f7f5223f0dcf","name":"Largest Bst Subtree","type":3,"slug":"largest-bst-subtree"}}}
plane

Editor


Loading...

Is Balanced Tree

easy

1. You are given a partially written BinaryTree class. 2. You are required to check if the tree is balanced. A binary tree is balanced if for every node the gap between height's of it's left and right subtree is not more than 1. 3. Input is managed for you. Note -> Please refer the question video for clarity.

Constraints

Time complexity must be O(n) Space should not be more than required for recursion (call-stack)

Format

Input

Input is managed for you.

Output

true if the tree is balanced, false otherwise

Example

Sample Input

21 50 25 12 n n 37 30 n n 51 n n 75 62 60 n n 70 n n n

Sample Output

false

Question Video

Discussions

Show Discussion

Related Resources

related resources

Turning Off Zen Mode