当前位置:   article > 正文

【递归、回溯和剪枝】二叉树中的深搜_二叉树剪枝和回溯

二叉树剪枝和回溯

⼆叉树中的深搜
深度优先遍历(DFS,全称为 Depth First Traversal),是我们树或者图这样的数据结构中常⽤的⼀种遍历算法。这个算法会尽可能深的搜索树或者图的分⽀,直到⼀条路径上的所有节点都被遍历完毕,然后再回溯到上⼀层,继续找⼀条路遍历。
在⼆叉树中,常⻅的深度优先遍历为:前序遍历、中序遍历以及后序遍历。
因为树的定义本⾝就是递归定义,因此采⽤递归的⽅法去实现树的三种遍历不仅容易理解⽽且代码很简洁。并且前中后序三种遍历的唯⼀区别就是访问根节点的时机不同,在做题的时候,选择⼀个适当的遍历顺序,对于算法的理解是⾮常有帮助的。

1.计算布尔二叉树的值 

计算布尔二叉树的值 

 思路:

  1. /**
  2. * Definition for a binary tree node.
  3. * struct TreeNode {
  4. * int val;
  5. * TreeNode *left;
  6. * TreeNode *right;
  7. * TreeNode() : val(0), left(nullptr), right(nullptr) {}
  8. * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
  9. * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
  10. * };
  11. */
  12. class Solution {
  13. public:
  14. bool evaluateTree(TreeNode* root) {
  15. if(root -> left == nullptr) return root->val == 0 ? false : true;
  16. bool left = evaluateTree(root->left);
  17. bool right = evaluateTree(root->right);
  18. return root->val == 2 ? left | right : left & right;
  19. }
  20. };

2.求根节点到叶子节点数字之和

求根节点到叶子节点数字之和

思路:

  1. /**
  2. * Definition for a binary tree node.
  3. * struct TreeNode {
  4. * int val;
  5. * TreeNode *left;
  6. * TreeNode *right;
  7. * TreeNode() : val(0), left(nullptr), right(nullptr) {}
  8. * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
  9. * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
  10. * };
  11. */
  12. class Solution {
  13. public:
  14. int sumNumbers(TreeNode* root) {
  15. return dfs(root, 0);
  16. }
  17. int dfs(TreeNode* root, int preSum)
  18. {
  19. preSum = preSum * 10 + root->val;
  20. if(root->left == nullptr && root->right == nullptr) return preSum;
  21. int ret = 0;
  22. if(root->left) ret += dfs(root->left, preSum);
  23. if(root->right) ret += dfs(root->right, preSum);
  24. return ret;
  25. }
  26. };

3.二叉树剪枝

二叉树剪枝

思路:

  1. /**
  2. * Definition for a binary tree node.
  3. * struct TreeNode {
  4. * int val;
  5. * TreeNode *left;
  6. * TreeNode *right;
  7. * TreeNode() : val(0), left(nullptr), right(nullptr) {}
  8. * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
  9. * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
  10. * };
  11. */
  12. class Solution {
  13. public:
  14. TreeNode* pruneTree(TreeNode* root) {
  15. if(root == nullptr) return nullptr;
  16. root->left = pruneTree(root->left);
  17. root->right = pruneTree(root->right);
  18. if(root->left == nullptr && root->right == nullptr && root->val == 0)
  19. {
  20. delete root;
  21. root = nullptr;
  22. }
  23. return root;
  24. }
  25. };

4.验证二叉搜索树

验证二叉搜索树

思路:

  1. /**
  2. * Definition for a binary tree node.
  3. * struct TreeNode {
  4. * int val;
  5. * TreeNode *left;
  6. * TreeNode *right;
  7. * TreeNode() : val(0), left(nullptr), right(nullptr) {}
  8. * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
  9. * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
  10. * };
  11. */
  12. class Solution {
  13. public:
  14. long prev = LONG_MIN;
  15. bool isValidBST(TreeNode* root) {
  16. if(root == nullptr) return true;
  17. bool left = isValidBST(root->left);
  18. //剪枝
  19. if(left == false) return false;
  20. bool cur = false;
  21. if(root->val > prev)
  22. {
  23. cur = true;
  24. }
  25. prev = root->val;
  26. if(cur == false) return false; // 剪枝
  27. bool right = isValidBST(root->right);
  28. return left && right && cur;
  29. }
  30. };

5.二叉搜索树中第k小的元素

二叉搜索树中第k小的元素

思路:

注意全局变量的妙用

  1. /**
  2. * Definition for a binary tree node.
  3. * struct TreeNode {
  4. * int val;
  5. * TreeNode *left;
  6. * TreeNode *right;
  7. * TreeNode() : val(0), left(nullptr), right(nullptr) {}
  8. * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
  9. * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
  10. * };
  11. */
  12. class Solution {
  13. public:
  14. int count;
  15. int ret;
  16. int kthSmallest(TreeNode* root, int k) {
  17. count = k;
  18. dfs(root);
  19. return ret;
  20. }
  21. void dfs(TreeNode* root)
  22. {
  23. if(root == nullptr || count == 0) return;
  24. dfs(root->left);
  25. count--;
  26. if(count == 0) ret = root->val;
  27. dfs(root->right);
  28. }
  29. };

6.二叉树的所有路径

二叉树的所有路径

思路:

path的妙用,把path放在参数列表,可以方便回溯,不需要我们手动进行回溯了。

  1. /**
  2. * Definition for a binary tree node.
  3. * struct TreeNode {
  4. * int val;
  5. * TreeNode *left;
  6. * TreeNode *right;
  7. * TreeNode() : val(0), left(nullptr), right(nullptr) {}
  8. * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
  9. * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
  10. * };
  11. */
  12. class Solution {
  13. public:
  14. vector<string> ret;
  15. vector<string> binaryTreePaths(TreeNode* root) {
  16. string path;
  17. if(root == nullptr) return ret;
  18. dfs(root, path);
  19. return ret;
  20. }
  21. void dfs(TreeNode* root, string path)
  22. {
  23. path += to_string(root->val);
  24. if(root->left == nullptr && root->right == nullptr)
  25. {
  26. ret.push_back(path);
  27. return;
  28. }
  29. path += "->";
  30. if(root->left) dfs(root->left, path);
  31. if(root->right) dfs(root->right, path);
  32. }
  33. };

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Guff_9hys/article/detail/1021231
推荐阅读
相关标签
  

闽ICP备14008679号