精灵副将
精灵副将
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
精灵副将的博客
全部文章
(共6篇)
题解 | #用两个栈实现队列#
class Solution { public: void push(int node) { stack1.push(node); } int pop() { if(stack2.empty()){ while (...
2024-10-19
0
24
题解 | #序列模式匹配#
#include <iostream> #include <string> #include <vector> using namespace std; int main() { string text,pattern; while(cin &...
2024-10-03
0
64
题解 | #密码破译#
使用深度优先搜索,寻找过程中不采用以0开头的数字。 #include <iostream> #include <vector> #include <string> using namespace std; char digitToChar(int digit){ ...
2024-10-03
0
82
题解 | #序列模式匹配#
先循环遍历确定一个答案范围,然后以这个范围作为基点作滑动窗口,当这个滑动窗口长度比当前答案小,则改为当前答案。 #include <iostream> #include <string> #include <vector> using namespace std;...
2024-10-02
0
61
题解 | #A+B(6)#
#include <iostream> #include <vector> using namespace std; int main() { vector<int> b; int a; &nb...
C++
2024-08-09
0
82
题解 | #A+B(7)#
#include <iostream> using namespace std; int main() { int ans; int a; ...
C++
2024-08-09
0
125