Skip to content

Latest commit

 

History

History

2764

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Given a 0-indexed integer 2D array nodes, your task is to determine if the given array represents the preorder traversal of some binary tree.

For each index i, nodes[i] = [id, parentId], where id is the id of the node at the index i and parentId is the id of its parent in the tree (if the node has no parent, then parentId = -1).

Return true if the given array represents the preorder traversal of some tree, and false otherwise.

Note: the preorder traversal of a tree is a recursive way to traverse a tree in which we first visit the current node, then we do the preorder traversal for the left child, and finally, we do it for the right child.

 

Example 1:

Input: nodes = [[0,-1],[1,0],[2,0],[3,2],[4,2]]
Output: true
Explanation: The given nodes make the tree in the picture below.
We can show that this is the preorder traversal of the tree, first we visit node 0, then we do the preorder traversal of the right child which is [1], then we do the preorder traversal of the left child which is [2,3,4].

Example 2:

Input: nodes = [[0,-1],[1,0],[2,0],[3,1],[4,1]]
Output: false
Explanation: The given nodes make the tree in the picture below.
For the preorder traversal, first we visit node 0, then we do the preorder traversal of the right child which is [1,3,4], but we can see that in the given order, 2 comes between 1 and 3, so, it's not the preorder traversal of the tree.

 

Constraints:

  • 1 <= nodes.length <= 105
  • nodes[i].length == 2
  • 0 <= nodes[i][0] <= 105
  • -1 <= nodes[i][1] <= 105
  • The input is generated such that nodes make a binary tree.

Related Topics:
Stack, Tree, Depth-First Search, Binary Tree

Solution 1.

// OJ: https://leetcode.com/problems/is-array-a-preorder-of-some-binary-tree
// Author: github.com/lzl124631x
// Time: O(N)
// Space: O(N)
class Solution {
public:
    bool isPreorder(vector<vector<int>>& A) {
        int N = A.size(), i = 0, root = -1;
        unordered_map<int, vector<int>> G;
        for (auto &n : A) {
            if (n[1] == -1) root = n[0];
            else G[n[1]].push_back(n[0]);
        }
        function<bool(int)> dfs = [&](int u) {
            if (A[i++][0] != u) return false;
            for (int v : G[u]) {
                if (!dfs(v)) return false;
            }
            return true;
        };
        return dfs(root);
    }
};