739每日温度 Posted on 2020-05-04 Words count in article: 234 | Reading time ≈ 1 739每日温度 下面是给出的代码123456class Solution {public: vector<int> dailyTemperatures(vector<int>& T) { }}; 我拿到必用BF12 ... Read more »
59-2队列的最大值 Posted on 2020-05-04 Words count in article: 284 | Reading time ≈ 1 59-2队列的最大值下面是题目 下面是题目给出的代码12345678910111213141516171819class MaxQueue {private: queue<int>public: MaxQueue() { } int ... Read more »
1410HTML实体解析器 Posted on 2020-05-04 Words count in article: 282 | Reading time ≈ 1 1410HTML实体解析器下面是题目 下面是题目给出的代码123456class Solution {public:string entityParser(string text){ }}; 我最先想到的就是图存储 先把元素一一对应 然后遍历text字符 ... Read more »
高等数学重积分 Posted on 2020-05-01 Words count in article: 2.5k | Reading time ≈ 11 重积分写在前面 终于等到这一天了,想到几天之后就要quiz的我头皮发麻 本来的笔记再oneNote上,但都是图片之类的。。煞是难看 只保存一些图片根本起不到学习的效果 算了,还是手敲公式⑧ 五一结束希望能够写完,只写最重要的公式和例子,废话少说 二重积分的计算利用直角坐标计算二重积分当被积函数$f ... Read more »
从-1开始的python爬虫 Posted on 2020-04-30 Words count in article: 9.7k | Reading time ≈ 45 从-1开始的python爬虫写在前面 这篇长博客主要记录了我跟着一个公开课的内容从-1开始的爬虫经验,为什么是从-1呢,就是说我对python刚刚上手没几天,就开始学爬虫了QAQ 假设我们都已经安装了pycharm并配置好了所有库 我们要用的库是:pip3 install requests s ... Read more »
946验证栈序列 Posted on 2020-04-30 Words count in article: 472 | Reading time ≈ 2 946验证栈序列下面是题目 下面是题目给出的代码123456class Solution {public:bool validateStackSequences(vector<int>& pushed, vector<int>& popped) ... Read more »
1249移除无效的括号 Posted on 2020-04-30 Words count in article: 457 | Reading time ≈ 1 1249移除无效的括号下面是题目 我的思路(挺慢的)我的思路是写两个栈,一个存储字符串,一个进行判断左右括号,和众多的括号题一样,我选择左括号进栈,匹配到右括号两栈皆pop,形成新的字符串,具体在代码中解释 1234567891011121314151617181920212223242526272 ... Read more »
921使括号有效的最小添加 Posted on 2020-04-30 Words count in article: 96 | Reading time ≈ 1 921使括号有效的最小添加 这题应该放到简单题中 下面是题目给出的代码123456class Solution {public: int minAddToMakeValid(string S) { }}; 下面是我给出的代码1234567891 ... Read more »
matlab基础 Posted on 2020-04-29 Words count in article: 2.3k | Reading time ≈ 10 Matlab命令使用 matlab是一个计算工具,也是一种编程语言 基本计算操作 + - * % ^ 表示乘方, 5^2 五的二次方 log 代表的是自然对数 ln log2 代表的是以2为底数的一个函数 log10 代表的是以10为底数的一个函数 想要计算其他的对数,用换底公式:log8 7= ... Read more »
1209删除字符串中所有相邻重复项II Posted on 2020-04-29 Words count in article: 746 | Reading time ≈ 3 1209删除字符串中所有相邻重复项II下面是题目 下面是代码模板12345class Solution {public: string removeDuplicates(string s, int k) { }}; 下面是一种好方法12345678 ... Read more »