Leetcode 993. Cousins in Binary Tree (二叉树遍历好题)

  1. Cousins in Binary Tree
    Easy
    3.9K
    193
    Companies
    Given the root of a binary tree with unique values and the values of two different nodes of the tree x and y, return true if the nodes corresponding to the values x and y in the tree are cousins, or false otherwise.

Two nodes of a binary tree are cousins if they have the same depth with different parents.

Note that in a binary tree, the root node is at the depth 0, and children of each depth k node are at the depth k + 1.

Example 1:

Input: root = [1,2,3,4], x = 4, y = 3

Output: false

Example 2:

Input: root = [1,2,3,null,4,null,5], x = 5, y = 4

Output: true

Example 3:

Input: root = [1,2,3,null,4], x = 2, y = 3

Output: false

Constraints:

The number of nodes in the tree is in the range [2, 100].

1 <= Node.val <= 100

Each node has a unique value.

x != y

x and y are exist in the tree.

解法1:

cpp 复制代码
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
 *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
 * };
 */
class Solution {
public:
    bool isCousins(TreeNode* root, int x, int y) {
        if (root->val == x || root->val == y) return false;
        helper(root, x, y, 0);
          if (depthX == depthY && fatherX != fatherY) {
            return true;
        } else {
            return false;
        }
    }
private:
    TreeNode *fatherX = NULL, *fatherY = NULL;
    int depthX = 0, depthY = 0;
    void helper(TreeNode *root, int x, int y, int depth) {
        if (!root || (fatherX && fatherY)) return;
        if (!fatherX) {
            if ((root->left && root->left->val == x) || 
                (root->right && root->right->val == x)) {
                depthX = depth + 1;
                fatherX = root;
            }
        }  
        if (!fatherY) {
            if ((root->left && root->left->val == y) || 
                (root->right && root->right->val == y)) {
                depthY = depth + 1;
                fatherY = root;
            }
        }
        helper(root->left, x, y, depth + 1);
        helper(root->right, x, y, depth + 1);
    }
};

二刷:

cpp 复制代码
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
 *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
 * };
 */
class Solution {
public:
    bool isCousins(TreeNode* root, int x, int y) {
        helper(root, x, y, 0, NULL);
        if (depthX == depthY && fatherX != fatherY) return true;
        return false;
    }
private:
    int depthX = 0, depthY = 0;
    TreeNode *fatherX = NULL, *fatherY = NULL;
    void helper(TreeNode *root, int x, int y, int depth, TreeNode *father) {
        if (!root) return;
        if (root->val == x) {
            fatherX = father;
            depthX = depth;
        }
        if (root->val == y) {
            fatherY = father;
            depthY = depth;
        }
        helper(root->left, x, y, depth + 1, root);
        helper(root->right, x, y, depth + 1, root);
    }
};
相关推荐
KoiHeng2 小时前
部分排序算法的Java模拟实现(复习向,非0基础)
java·算法·排序算法
岁忧8 小时前
(nice!!!)(LeetCode 面试经典 150 题 ) 30. 串联所有单词的子串 (哈希表+字符串+滑动窗口)
java·c++·leetcode·面试·go·散列表
艾莉丝努力练剑9 小时前
【数据结构与算法】数据结构初阶:详解顺序表和链表(四)——单链表(下)
c语言·开发语言·数据结构·学习·算法·链表
yngsqq10 小时前
移动碰撞法 ——套料排版算法——CAD c#
算法
秋说11 小时前
【PTA数据结构 | C语言版】根据层序序列重构二叉树
c语言·数据结构·算法
秋说12 小时前
【PTA数据结构 | C语言版】前序遍历二叉树
c语言·数据结构·算法
会唱歌的小黄李13 小时前
【算法】贪心算法:最大数C++
c++·算法·贪心算法
NuyoahC13 小时前
笔试——Day8
c++·算法·笔试
墨染点香13 小时前
LeetCode Hot100 【1.两数之和、2.两数相加、3.无重复字符的最长子串】
算法·leetcode·职场和发展
秋说14 小时前
【PTA数据结构 | C语言版】二叉树层序序列化
c语言·数据结构·算法