宁静的冬日
宁静的冬日
全部文章
分类
python学习(4)
代码笔记(4)
题解(83)
归档
标签
去牛客网
登录
/
注册
宁静的冬日的博客
全部文章
(共91篇)
题解 | #点击消除#用字符串模拟栈
#include <iostream> using namespace std; int main() { string s; cin >> s; string mStack; for (int i = 0; i < s.size...
2023-03-14
0
280
题解 | #逆波兰表达式求值#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param tokens string字符串vector * @return int整型 ...
2023-03-14
0
290
题解 | #有效括号序列#
class Solution { public: /** * * @param s string字符串 * @return bool布尔型 */ bool isValid(string s) { // write code he...
2023-03-14
0
298
题解 | #栈的压入、弹出序列#
#include <iostream> #include <vector> using namespace std; class Solution { public: bool IsPopOrder(vector<int> pushV, vector...
2023-03-14
0
298
题解 | #【模板】栈#基于面向对象思想
#include <iostream> #include <vector> using namespace std; class MyStack { vector<int> arr; public: void push(int x) { ...
2023-03-09
0
204
python小工具-将句子按单词转成列表
#将句子按单词转成列表 def myfunc(str): s=str.lower() myls=list() word="" for ch in s: if(ch==" "): if(word!=""):myls.append(...
Python3
2022-04-22
0
322
题解 | #第一个只出现一次的字符#
class Solution { public: int FirstNotRepeatingChar(string str) { unordered_map<char,int>m_firstpos; unordered_map<char,in...
C++
2022-04-06
0
323
题解 | #把数组排成最小的数#
class Solution { public: //将数字转成字符串 string itos(int n) { if (n == 0)return"0"; string s; while (n) { s += '0' + n % 10; n /= 10; } ...
C++
2022-04-05
0
328
题解 | #字符串的排列#
dfs,永远滴神 class Solution { public: set<string>v; string nows; void dfs(string str){ if(str.empty()){ v.inser...
C++
2022-04-04
0
307
题解 | #复杂链表的复制#
class Solution { public: RandomListNode* Clone(RandomListNode* pHead) { //hash表,用于记录旧节点对应的新节点是否已经开辟,同时建立两者的联系 unordered_map< RandomListNode*, ...
C++
2022-04-04
0
393
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页