ysong想养只修狗
ysong想养只修狗
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ysong想养只修狗的博客
全部文章
(共63篇)
题解 | #计算表达式#
#include <cctype> #include <iostream> #include <random> #include <stack> #include <algorithm> #include <unordered_map...
2023-05-05
0
257
题解 | #堆栈的使用#
#include <iostream> #include <stack> using namespace std; stack<int> stk; int main() { int n; while (cin >> n) { ...
2023-05-05
0
237
题解 | #简单计算器#
#include <cctype> #include <iostream> #include <unordered_map> #include <stack> #include <algorithm> using namespace std...
2023-05-05
0
215
Zero-complexity Transposition#
#include <iostream> #include <stack> using namespace std; stack<int> stk; int main() { int n, num; while (cin >> n) { ...
2023-05-04
0
262
题解 | #完数VS盈数#
#include <iostream> #include <vector> using namespace std; vector<int> vecE; vector<int> vecG; int sum(int a){ int s = 1...
2023-05-04
0
212
题解 | #String Matching#
#include <iostream> using namespace std; const int N = 1e6 + 10; //注:以下数组下标从1开始 char p[N], s[N]; int ne[N]; void myNext(){//创建next数组 int ...
2023-05-04
1
248
题解 | #后缀子串排序#
#include <iostream> #include <vector> #include <algorithm> using namespace std; vector<string> strs; int main() { string ...
2023-05-03
1
291
题解 | #浮点数加法#
#include <iostream> #include <vector> using namespace std; /** 参考acwing:acwing.com/problem/content/submission/code_detail/21333150/ */ voi...
2023-05-03
1
266
题解 | #首字母大写#
#include <iostream> using namespace std; string str; bool isSpliter(char c){ if(c == ' ' || c == '\t' || c == '\r' || c == '\n') return true...
2023-05-03
0
200
题解 | #单词替换#
#include <iostream> using namespace std; string strs[101];//把所有单词存放到数组中 int main() { string str; getline(cin, str); string a, ...
2023-05-03
0
233
首页
上一页
1
2
3
4
5
6
7
下一页
末页