[力扣二叉树] 本地调试环境指导手册

236. 二叉树的最近公共祖先为例子
本地编译软件为Viusal Studio 2022
在这里插入图片描述

写代码

项目里文件位置

在这里插入图片描述

CreateTree.h

#pragma once
#ifndef CLIONPROJECT_LEETCODECREATETREE_H
#define CLIONPROJECT_LEETCODECREATETREE_H
#include<vector>
#include<queue>
using namespace std;
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) {}
};

TreeNode* createTree(vector<int> nodes)
{
    if (!nodes.size())
    {
        return nullptr;
    }
    queue<TreeNode*> que;
    TreeNode* root, * node, * cur;
    root = new TreeNode();
    cur = new TreeNode();
    bool is_left = true;
    for (auto val : nodes)
    {
        if (val != INT_MAX)
        {
            node = new TreeNode(val);
        }
        else
        {
            node = nullptr;
        }


        if (que.empty())
        {
            root = node;
            que.push(node);
        }
        else if (is_left)
        {
            cur = que.front();
            que.pop();
            cur->left = node;
            if (&node)
            {
                que.push(node);
            }
            is_left = !is_left;
        }
        else
        {
            cur->right = node;
            if (&node)
            {
                que.push(node);
            }
            is_left = !is_left;
        }
    }
    return root;
}

#endif //CLIONPROJECT_LEETCODECREATETREE_H

236_二叉树的最近公共祖先.cpp

// ConsoleApplication1.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#include <iostream>
#include <vector>
#include <unordered_map>
#include <unordered_set>
#include "CreateTree.h"

using namespace std;


class Solution {
public:
    TreeNode* lowestCommonAncestor(TreeNode* root, TreeNode* p, TreeNode* q)
    {
        if (root->val == q->val || root->val == p->val || root == NULL)
        {
            return root;
        }
        TreeNode* left = lowestCommonAncestor(root->left, p, q);
        TreeNode* right = lowestCommonAncestor(root->right, p, q);
        if (left != NULL && right != NULL)
        {
            return root;
        }

        if (left == NULL && right == NULL)
        {
            return right;
        }
        else if (left != NULL && right == NULL)
        {
            return left;
        }
        else // (left == NULL && right == NULL)
        {
            return NULL;
        }
    }
};


int main()
{
    vector<int> input = {3,5,1,6,2,0,8,INT_MAX,INT_MAX,7,4};
    TreeNode* root;
    TreeNode* p = new TreeNode(5);
    TreeNode* q = new TreeNode(1);

    root = createTree(input);
    Solution solution = Solution();
    TreeNode* result = solution.lowestCommonAncestor(root, p, q);
    cout << result->val << endl;

    return 0;
}

FBI WARNING
(1)输入的是一串int,所以把其中null改成正常节点用不到的一个值;
(2)输入的pq是指向实际那个节点的(指向树中那个位置),但是自己创建数有点麻烦,所以我重新创建了一个节点,就必须要在后面遍历逻辑中比较是否找到的时候,改成root->val == p->val,不可以是root == p

接下来就可以愉快的调试了!

参考

力扣二叉树题目本地测试生成测试用例Python\C++

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值