IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> LeetCode Easy 前26-30道 -> 正文阅读

[数据结构与算法]LeetCode Easy 前26-30道

#111 Minimum Depth of Binary Tree
#112 Path Sum
#118 Pascal’s Triangle
#119 Pascal’s Triangle II
#121 Best Time to Buy and Sell Stock

#111 Minimum Depth of Binary Tree
要求:求二叉树的最浅深度
思路1:采用递归的思路,没毛病,一次AC

class Solution {
public:
    int minDepth(TreeNode* root) {
        if(!root) return 0;
        if(!root->left && !root->right) return 1;
        int left = minDepth(root->left);
        int right = minDepth(root->right);
        int minValue = min(left,right);
        if(left == 0)
            minValue = right;
        else if(right == 0)
            minValue = left;
        return 1 + minValue;
    }
};

参考了大神博客园:Grandyang,事实证明,以后要注意代码简洁度了。

class Solution {
public:
    int minDepth(TreeNode* root) {
        if(!root) return 0;
        if(!root->left) return 1 + minDepth(root->right);
        if(!root->right) return 1 + minDepth(root->left);
        return 1 + min(minDepth(root->left), minDepth(root->right));
    }
};

思路2:采用队列的结构,依旧是迭代,解法类似 求最大深度,只是提早进行返回了。参考题解:Maximum Depth of Binary Tree

class Solution {
public:
    int minDepth(TreeNode* root) {
        if (!root) return 0;
        int res = 0;
        queue<TreeNode*> q{{root}};
        while (!q.empty()) {
            ++res;
            for (int i = q.size(); i > 0; --i) {
                auto t = q.front(); q.pop();
                if (!t->left && !t->right) return res;
                if (t->left) q.push(t->left);
                if (t->right) q.push(t->right);
            }
        }
        return -1;
    }
};

#112 Path Sum
要求:给定一个二叉树,一个值,能否找到一个路径之和等于值的,返回true
思路1:继续迭代,往下遍历即可,一次AC,注意是要到叶子节点之和的路径

class Solution {
public:
    bool hasPathSum(TreeNode* root, int targetSum) {
        if(!root) return false;
        if(root->val == targetSum && !root->left &&!root->right) return true;
        return hasPathSum(root->left, targetSum-root->val) 
            || hasPathSum(root->right,targetSum-root->val);
    } 
};

参考大神博客园:Grandyang
思路2:采用迭代的思路,一直往下求值,新起了一个节点,没想到的思路

class Solution {
public:
    bool hasPathSum(TreeNode* root, int targetSum) {
        if(!root) return false;
        stack<TreeNode*> st{{root}};
        while(!st.empty())
        {
            TreeNode* t = st.top();st.pop();
            if(!t->left && !t->right && t->val == targetSum) return true;
            if(t->left) {t->left->val += t->val;st.push(t->left);}
            if(t->right){t->right->val += t->val;st.push(t->right);}
        }
        return false;
    }
};

#118 Pascal’s Triangle
要求:杨辉三角,返回数组的集合。行数为输入的整数
思路1:就是建立二维数组,每一行初始全为1,然后逐渐赋值其他。代码没写出来。
参考了大神博客园:Grandyang

class Solution {
public:
    vector<vector<int>> generate(int numRows) {
        vector<vector<int>> res(numRows, vector<int>());
        for(int i = 0 ; i<numRows; ++i)
	    {
		    res[i].resize(i+1,1);
		    for(int j = 1; j<i; ++j){
			res[i][j]= res[i-1][j-1] +res[i-1][j];}
		}
	return res;
    }
};

#119 Pascal’s Triangle II
要求:输出杨辉三角的指定索引行。
思路1:杨辉三角1改编即可。需要依赖于杨辉三角题已解。只需要输出特定行。

class Solution {
public:
    vector<int> getRow(int rowIndex) {
         vector<vector<int>> res(rowIndex+1, vector<int>());
        for(int i = 0 ; i<rowIndex+1; ++i)
	    {
		    res[i].resize(i+1,1);
		    for(int j = 1; j<i; ++j){
			res[i][j]= res[i-1][j-1] +res[i-1][j];}
		}
	return res[rowIndex];
    }
};

#121 Best Time to Buy and Sell Stock
要求:给定一个数组,按照某一天购买,后续卖出的差值,求最大化利润。无利润则返回0
思路1:笨办法,二重循环,显然不满足题意,无法通过大用例

class Solution {
public:
    int maxProfit(vector<int>& prices) {
        int maxProfit = 0; 
        for(int i = 0 ; i<prices.size();i++)
        {
            for(int j = i+1 ; j<prices.size();j++)
            {
                int result = prices[j]- prices[i];
                maxProfit = max(result, maxProfit);
            }
        }
        return maxProfit;
    }
};

参考了大神博客园:Grandyang
思路2:对于二重循环的垃圾想法,还是要早早放弃啊,这种方法才是真的好

class Solution {
public:
    int maxProfit(vector<int>& prices) {
        int res = 0, buy = INT_MAX;
        for (int price : prices) {
            buy = min(buy, price);
            res = max(res, price - buy);
        }
        return res;
    }
};

菜鸟一枚,欢迎大家批评指正,谢谢~

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2021-08-20 15:22:16  更:2021-08-20 15:23:19 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 22:53:48-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码