• C-DS二叉树_另一棵树的子树


    Description

    给你两棵二叉树tree1和tree2,检验tree1中是否包含和tree2具有相同结构和结点值的子树。如果存在,输出true;否则,输出false。

        e5ae6430bace4165b4aed1e1e7f257c8.pngfb5377c19b6b4838819336e68a84ed77.png

    Input

    第一行输入t,表示有t个测试样例。

    第二行首先输入n1,接着输入n1个整数,表示二叉树tree1。

    第三行首先输入n2,接着输入n2个整数,表示二叉树tree2。

    以此类推,每两行输入一个测试样例,共输入t个测试样例。

    数组形式的二叉树表示方法与题目:DS二叉树_伪层序遍历构建二叉树 相同,输入-1表示空结点。

    Output

    每一行输出当前测试样例是否符合题意。

    共输出t行。

    8d9facdd0dc84ddbb69842270df1896e.png

    思路分析:

    方法一:深度优先搜索暴力匹配

    985d0dc687e240ebab7dc3b5f47090fd.png

    1ffffd6c3dc342e195d9e583a3e5640c.png

    877f1727d42e4ddf9f2a5ae39da3b63a.png

    算法实现:

    1. bool SameTree(BitNode* s, BitNode* t) {
    2. //如果根节点都为空,匹配成功,返回true
    3. if (s == nullptr && t == nullptr) return true;、
    4. //两者之中有一个为空,匹配不成功,返回false
    5. if (s == nullptr || t == nullptr) return false;
    6. //三者都相等才是相等的树,必须满足1.根节点值相等; 2.左子树相等 3.右子树相等
    7. return s->data == t->data && SameTree(s->lc, t->lc) && SameTree(s->rc, t->rc);
    8. }
    9. bool isSubtree(BitNode* s, BitNode* t) {
    10. if (!s) return false;
    11. //如果 目标树是子树的左子树,或者是右子树,或者两者相等,那么目标树则为主树的子树
    12. return isSubtree(s->lc, t) || SameTree(s, t) || isSubtree(s->rc, t);
    13. }

     实现代码:

    1. #include
    2. #include
    3. using namespace std;
    4. class BitNode {
    5. //friend bool isSubtree();
    6. //friend bool SameTree();
    7. public:
    8. int data;
    9. BitNode* lc;
    10. BitNode* rc;
    11. BitNode() :lc(NULL), rc(NULL) {};
    12. BitNode(char e) :data(e), lc(NULL), rc(NULL) {};
    13. ~BitNode() {
    14. delete lc;
    15. delete rc;
    16. }
    17. friend class BinaryTree;
    18. };
    19. class BinaryTree {
    20. private:
    21. BitNode* root;//头节点
    22. void CreateTree(BitNode*& t, int n, int arr[]);
    23. int* arr = new int[1000];
    24. public:
    25. BinaryTree() :root(NULL) {}
    26. ~BinaryTree() { delete root; };
    27. void CreatTree(int n, int arr[]);
    28. BitNode* getRoot() {
    29. return root;
    30. }
    31. };
    32. void BinaryTree::CreateTree(BitNode*& t, int n, int arr[]) {//伪层序遍历构建二叉树
    33. t = new BitNode;
    34. queue T;
    35. if (arr[0] != -1) {
    36. t->data = arr[0];
    37. T.push(t);
    38. }
    39. else {
    40. return;
    41. }
    42. int count = 1;
    43. while (count < n && !T.empty()) {
    44. BitNode* node = T.front();
    45. T.pop();
    46. if (arr[count] != -1) {
    47. node->lc = new BitNode(arr[count]);
    48. T.push(node->lc);
    49. }
    50. count++;
    51. if (count < n && arr[count] != -1) {
    52. node->rc = new BitNode(arr[count]);
    53. T.push(node->rc);
    54. }
    55. count++;
    56. }
    57. }
    58. void BinaryTree::CreatTree(int n, int arr[]) {
    59. CreateTree(root, n, arr);
    60. }
    61. bool SameTree(BitNode* s, BitNode* t) {
    62. //如果根节点都为空,匹配成功,返回true
    63. if (s == nullptr && t == nullptr) return true;
    64. //两者之中有一个为空,匹配不成功,返回false
    65. if (s == nullptr || t == nullptr) return false;
    66. //三者都相等才是相等的树,必须满足1.根节点值相等; 2.左子树相等 3.右子树相等
    67. return s->data == t->data && SameTree(s->lc, t->lc) && SameTree(s->rc, t->rc);
    68. }
    69. bool isSubtree(BitNode* s, BitNode* t) {
    70. if (!s) return false;
    71. //如果 目标树是子树的左子树,或者是右子树,或者两者相等,那么目标树则为主树的子树
    72. return isSubtree(s->lc, t) || SameTree(s, t) || isSubtree(s->rc, t);
    73. //请不要直接复制粘贴
    74. }
    75. int main()
    76. {
    77. int t;
    78. cin >> t;
    79. while (t--)
    80. {
    81. int n1;
    82. int n2;
    83. cin >> n1;
    84. int* arr1 = new int[n1 + 1];
    85. for (int i = 0; i < n1; i++) {
    86. cin >> arr1[i];
    87. }
    88. cin >> n2;
    89. int* arr2 = new int[n2 + 1];
    90. for (int i = 0; i < n2; i++) {
    91. cin >> arr2[i];
    92. }
    93. BinaryTree* tree1 = new BinaryTree;
    94. tree1->CreatTree(n1, arr1);
    95. BinaryTree* tree2 = new BinaryTree;
    96. tree2->CreatTree(n2, arr2);
    97. if (isSubtree(tree1->getRoot(), tree2->getRoot())) {
    98. cout << "true" << endl;
    99. }
    100. else {
    101. cout << "false" << endl;
    102. }
    103. ;
    104. }
    105. }

     

     

  • 相关阅读:
    猿创征文|docker本地私人仓库快速搭建后的安全优化(用户鉴权和简易的web界面开启)
    SpringCloud Sentinel集成Gateway和实时监控
    【专精特新周报】北交所IPO受理现小高潮,上周共受理59家企业,七成为专精特新;朗鸿科技二度上会,顺利过会...
    B站刘二大人-数据集及数据加载 Lecture 8
    设备巡检系统为巡检人员带来便利有哪些
    【Java集合框架】22 ——SortedMap 接口
    面试如何介绍MVCC
    FiddlerScript 脚本使用正则表达式替换响应内容
    无线传感器网络:排队论(Queueing Theory)模型
    小黑腰酸背痛继续leetcode:剑指 Offer II 027. 回文链表
  • 原文地址:https://blog.csdn.net/weixin_73609038/article/details/134249505