string容器 Posted on 2020-04-22 | In STL Words count in article: 1.7k | Reading time ≈ 8 string 容器 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727 ... Read more »
155最小栈 Posted on 2020-04-22 Words count in article: 405 | Reading time ≈ 1 155最小栈下面是题目 下面是题目给出的模板123456789101112131415161718192021222324252627282930class MinStack {public: /** initialize your data structure here. */ ... Read more »
20有效的括号 Posted on 2020-04-22 Words count in article: 263 | Reading time ≈ 1 下面是题目 下面是题目给出的代码123456class Solution {public: bool isValid(string s) { }}; 我第一时间觉得既然(){} []需要相互配对,为什么不用map存储呢?123456 ... Read more »
1047删除字符串中所有的相邻重复项 Posted on 2020-04-22 Words count in article: 370 | Reading time ≈ 1 1047删除字符串中所有的相邻重复项下面是题目 下面是题目给出的模板12345class Solution {public: string removeDuplicates(string S) { }}; 这里给出两个解法,第一种是我自己想出来的原 ... Read more »
844比较含退格的字符串 Posted on 2020-04-22 Words count in article: 192 | Reading time ≈ 1 844比较含退格的字符串下面是题目 下面是题目给出的代码12345class Solution {public: bool backspaceCompare(string S, string T) { }}; 解答 还是要先判断特殊字符,在判断特殊 ... Read more »
682棒球比赛 Posted on 2020-04-22 Words count in article: 354 | Reading time ≈ 1 下面是题目 下面是题目给出的代码12345class Solution {public: int calPoints(vector<string>& ops) { }}; 因为是简单题,而且我思考的时候并没有发生很严重的卡 ... Read more »
496下一个更大的数 Posted on 2020-04-21 Words count in article: 669 | Reading time ≈ 2 496下一个更大的数下面是题目 下面是题目给出的模板123456class Solution {public: vector<int> nextGreaterElement(vector<int>& nums1, vector<int>&a ... Read more »
Javascript-8函数 Posted on 2020-04-21 Words count in article: 5.3k | Reading time ≈ 21 JavaScript-8函数概况 形参实参 this 对象的方法 构造函数 函数即对象 闭包 函数可以嵌套在其他函数中定义,这样他们就可以访问他们被定义时所处的作用域中的任何变量,这意味着Javascript函数构成了一个闭包 8.1函数定义 两种方式 函数定义表达式 函数声明语句 函数定 ... Read more »