【dfs+位运算】1457. 二叉树中的伪回文路径
2024-01-09 13:00:00
https://leetcode.cn/problems/pseudo-palindromic-paths-in-a-binary-tree/
/**
* 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:
int res = 0;
bool isPseudoPa(unordered_map<int,int> &curPath) {
int odd = 0;
for (auto it = curPath.begin(); it != curPath.end(); it++) {
if (it->second %2) {
odd++;
}
}
if (odd <= 1) return true;
return false;
}
void dfs(TreeNode* cur, unordered_map<int,int> &curPath) {
if (cur == nullptr) {
return;
}
curPath[cur->val]++;
if (cur->left == nullptr && cur->right == nullptr) {
res += isPseudoPa(curPath);
curPath[cur->val]--;
return;
}
dfs(cur->left, curPath);
dfs(cur->right, curPath);
curPath[cur->val]--;
}
int pseudoPalindromicPaths (TreeNode* root) {
unordered_map<int,int> mp;
dfs(root, mp);
return res;
}
};
/**
* 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:
int res = 0;
void dfs(TreeNode* cur, array<int, 10> &curPath) {
if (cur == nullptr) {
return;
}
curPath[cur->val] ^= 1;
if (cur->left == nullptr && cur->right == nullptr) {
res += accumulate(curPath.begin(), curPath.end(), 0) <= 1;
curPath[cur->val] ^= 1;
return;
}
dfs(cur->left, curPath);
dfs(cur->right, curPath);
curPath[cur->val] ^= 1;
}
int pseudoPalindromicPaths (TreeNode* root) {
array<int, 10> p{};
dfs(root, p);
return res;
}
};
/**
* 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:
int res = 0;
void dfs(TreeNode* cur, int mask) {
if (cur == nullptr) {
return;
}
mask ^= 1 << cur->val;
if (cur->left == nullptr && cur->right == nullptr) {
res += (mask == (mask & -mask) ? 1 : 0);
return;
}
dfs(cur->left, mask);
dfs(cur->right, mask);
}
int pseudoPalindromicPaths (TreeNode* root) {
dfs(root, 0);
return res;
}
};
文章来源:https://blog.csdn.net/qq_38662930/article/details/135475769
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!