加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
LC1457.cpp 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
xinanXu 提交于 2023-11-25 22:56 . 1457. 二叉树中的伪回文路径
/**
* 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 num = 0, res = 0;
bool check() {
int sum = 0;
for (int i = 1; i <= 9; i++) {
if (num & (1 << i)) sum ++;
}
return sum <= 1;
}
void change(int& bit) {
int temp = (1 << bit);
num = num ^ temp;
}
void solution(TreeNode* root) {
change(root->val);
if (!root->left && !root->right) {
if (check()) res++;
change(root->val);
return;
}
if (root->left) pseudoPalindromicPaths(root->left);
if (root->right) pseudoPalindromicPaths(root->right);
change(root->val);
}
int pseudoPalindromicPaths (TreeNode* root) {
solution(root);
return res;
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化