李顺利plus
李顺利plus
全部文章
分类
题解(15)
归档
标签
去牛客网
登录
/
注册
李顺利plus的博客
全部文章
(共90篇)
题解 | #第一个只出现一次的字符#
class Solution {public: struct strin{ int count; ...
2022-11-24
0
235
题解 | #包含min函数的栈#
class Solution {public: stack<int> stack,stackmin;//stackmin栈顶用于存放stack栈中最小值 void&n...
2022-11-24
0
230
题解 | #跳台阶#
其实就是斐波那契数列,这里为了满足时间复杂度On没有采用递归的方式而是用了循环,为了满足空间复杂度O1没有采用数组而采用了3个变量来代替数组。class Solution { public: int jumpFloor(int number) { if(number==1) ...
2022-11-18
0
220
题解 | #用两个栈实现队列#
class Solution { public: void push(int node) { //栈1用作实现入队 if(stack2.empty()){ //栈2实现出队,如果栈2空,表明刚才没有进行出队动作,直接压入栈1顶...
2022-11-17
0
245
题解 | #求1+2+3+...+n#
class Solution {public: int Sum_Solution(int n) { n&...
2022-11-16
0
204
题解 | #礼物的最大价值#
class Solution {public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可  ...
2022-11-16
0
272
题解 | #和为S的两个数字#
class Solution { public: vector<int> FindNumbersWithSum(vector<int> array,int sum) {...
C++
2022-10-13
0
210
题解 | #从尾到头打印链表#
class Solution { public: vector<int> printListFromTailToHead(ListNode* head) { &nbs...
C++
2022-10-13
0
247
题解 | #从尾到头打印链表#
int* printListFromTailToHead(struct ListNode* listNode, int* returnSize ) { // write&n...
C
2022-10-13
0
204
题解 | #翻转单词序列#
class Solution { public: string ReverseSentence(string str) { &nb...
C++
C
2022-10-12
0
280
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页