Class Solution
- java.lang.Object
-
- g2101_2200.s2196_create_binary_tree_from_descriptions.Solution
-
public class Solution extends Object
2196 - Create Binary Tree From Descriptions.Medium
You are given a 2D integer array
descriptionswheredescriptions[i] = [parenti, childi, isLefti]indicates thatparentiis the parent ofchildiin a binary tree of unique values. Furthermore,- If
isLefti == 1, thenchildiis the left child ofparenti. - If
isLefti == 0, thenchildiis the right child ofparenti.
Construct the binary tree described by
descriptionsand return its root.The test cases will be generated such that the binary tree is valid.
Example 1:

Input: descriptions = [[20,15,1],[20,17,0],[50,20,1],[50,80,0],[80,19,1]]
Output: [50,20,80,15,17,19]
Explanation: The root node is the node with value 50 since it has no parent.
The resulting binary tree is shown in the diagram.
Example 2:

Input: descriptions = [[1,2,1],[2,3,0],[3,4,1]]
Output: [1,2,null,null,3,4]
Explanation: The root node is the node with value 1 since it has no parent.
The resulting binary tree is shown in the diagram.
Constraints:
1 <= descriptions.length <= 104descriptions[i].length == 31 <= parenti, childi <= 1050 <= isLefti <= 1- The binary tree described by
descriptionsis valid.
- If
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
-
-
Method Detail
-
createBinaryTree
public TreeNode createBinaryTree(int[][] descriptions)
-
-