-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path993.cousins-in-binary-tree.cpp
116 lines (112 loc) · 2.27 KB
/
993.cousins-in-binary-tree.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
* @lc app=leetcode id=993 lang=cpp
*
* [993] Cousins in Binary Tree
*
* https://leetcode.com/problems/cousins-in-binary-tree/description/
*
* algorithms
* Easy (52.37%)
* Total Accepted: 19.9K
* Total Submissions: 38.1K
* Testcase Example: '[1,2,3,4]\n4\n3'
*
* In a binary tree, the root node is at depth 0, and children of each depth k
* node are at depth k+1.
*
* Two nodes of a binary tree are cousins if they have the same depth, but have
* different parents.
*
* We are given the root of a binary tree with unique values, and the values x
* and y of two different nodes in the tree.
*
* Return true if and only if the nodes corresponding to the values x and y are
* cousins.
*
*
*
* 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
*
*
*
*
*
* Note:
*
*
* The number of nodes in the tree will be between 2 and 100.
* Each node has a unique integer value from 1 to 100.
*
*
*
*
*
*
*
*/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
int depth1;
int depth2;
bool sameparent;
void callme(int d, TreeNode* root, int &x, int &y){
if(root == NULL || sameparent) return;
if(root->val == x){
depth1 = d;
return;
}
else if(root->val == y){
depth2 = d;
return;
}
if(root->left != NULL && root->right != NULL){
if((root->left->val == x && root->right->val == y)
|| (root->left->val == y && root->right->val == x)){
sameparent = true;
return;
}
}
callme(d+1, root->left, x, y);
callme(d+1, root->right, x, y);
}
bool isCousins(TreeNode* root, int x, int y) {
depth1 = -1;
depth2 = -2;
sameparent = false;
callme(0, root, x, y);
return depth1 == depth2 && !sameparent;
}
};