[LeetCode力扣hot100]-二叉树相关手撕题

简单

94.中序遍历

就说左子树-根-右子树顺序,之前也有二叉树相关的文章,基本上递归为主,这里用栈等方式实现下。

用到:栈

注意上面给出节点的基本结构,如左右,val指等

cpp 复制代码
/**
 * 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:
    vector<int> inorderTraversal(TreeNode* root) {
        vector<int> res; //最后输出需要vector形式
        stack<TreeNode*> stk; //借助栈

        while(root||!stk.empty()){ 

            while(root){  //塞满左边
                stk.push(root);
                root=root->left;
            }
            //往下翻存数,直到翻到右边
            root=stk.top();
            stk.pop();
            res.push_back(root->val);
            root=root->right;

        }
        
        return res;
    }
};

104.二叉树最大深度

递归 即可,max(左子树深度,右子树深度)+1;

cpp 复制代码
class Solution {
public:
    int maxDepth(TreeNode* root) {

        if(root==nullptr){
            return 0;
        }else{
            return max(maxDepth(root->left),maxDepth(root->right))+1;
        }
    }
};

基于这道题,引申下面这道题:

二叉树的直径

543. 二叉树的直径 - 力扣(LeetCode)必须掌握上一题深度的写法,得到每个节点作为根节点的最大深度,同时记录其左右最大深度。

cpp 复制代码
class Solution {
public:
    int max1=0;

    int Deep(TreeNode* root) {
        if(root==nullptr){
            return 0;
        }
        int left1= Deep(root->left);
        int right1=Deep(root->right);
        max1=max(max1,left1+right1);

        return max(left1,right1)+1;
    }
    
    int diameterOfBinaryTree(TreeNode* root) {
        if(root==nullptr){
            return 0;
        }
        Deep(root);
        return max1;
    }
};

226。翻转二叉树

226.翻转二叉树

也是递归

cpp 复制代码
class Solution {
public:
    TreeNode* invertTree(TreeNode* root) {
        if(root==nullptr){
            return nullptr;
        }
        TreeNode* left=invertTree(root->left);
        TreeNode* right=invertTree(root->right);

        root->left=right;
        root->right=left;

        return root;
    }
};

101.对称二叉树

要自己写个函数,再递归

cpp 复制代码
class Solution {
public:
bool pan(TreeNode* t1,TreeNode* t2){ //自己写的函数
            if(t1==nullptr&&t2==nullptr){
                return true;
            }else if(t1==nullptr || t2==nullptr){
                return false;
            }else{
                return t1->val==t2->val &&pan(t1->left,t2->right)&&pan(t1->right,t2->left);
            }
        }


    bool isSymmetric(TreeNode* root) {//题目给的
         return pan(root,root);
    }
};

二叉树的直径

543. 二叉树的直径 - 力扣(LeetCode)

中等

0927面试了某家中厂,考到二叉树层级遍历了,很悲催的没有做出来,在此反思复习一下。

树的递归------类似于图的深搜。

树的层级遍历------类似于图的广搜。

1.二叉树的层级遍历

. - 力扣(LeetCode)注意,这个q.size()是在不断变化的,if(current2->left/right)处理时,不断往q队列里塞入当前节点的左右节点,注意就不用else处理了。最后打印二维数组即可

借助数据结构:queue

cpp 复制代码
class Solution {
public:
    vector<vector<int>> levelOrder(TreeNode* root) {
        vector<vector<int>> result;
        if(!root){
            return result;
        }//为空处理
        queue<TreeNode*> q;

        q.push(root);

        while(!q.empty()){
            
            int levelSize=q.size();
            vector<int> current1;//层级

            for(int i=0;i<levelSize;++i){
                TreeNode *current2=q.front();//单个节点
                q.pop();

                current1.push_back(current2->val);

                if(current2->left){
                    q.push(current2->left);
                }
                if(current2->right){
                    q.push(current2->right);
                }        
            }
result.push_back(current1);   
        }
        return result;
    }
};
相关推荐
The_cute_cat6 分钟前
试除法判断素数优化【C语言】
算法
Darkwanderor24 分钟前
一般枚举题目合集
c++·算法
@我漫长的孤独流浪1 小时前
最短路与拓扑(2)
数据结构·c++·算法
程序员三藏1 小时前
软件测试之功能测试详解
自动化测试·软件测试·python·功能测试·测试工具·职场和发展·测试用例
<但凡.2 小时前
C++修炼:多态
开发语言·c++·算法
买了一束花2 小时前
数据预处理之数据平滑处理详解
开发语言·人工智能·算法·matlab
小雅痞2 小时前
[Java][Leetcode simple]26. 删除有序数组中的重复项
java·leetcode
YuforiaCode2 小时前
LeetCode 热题 100 35.搜索插入位置
数据结构·算法·leetcode
Jasmine_llq3 小时前
《P4391 [BalticOI 2009] Radio Transmission 无线传输 题解》
算法·字符串·substr
水水沝淼㵘4 小时前
嵌入式开发学习日志(数据结构--单链表)Day20
c语言·开发语言·数据结构·学习·算法