牛客272539079号
牛客272539079号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客272539079号的博客
全部文章
(共15篇)
题解 | #从单向链表中删除指定值的节点#
#include<iostream> using namespace std; const int N = 1005; int head, e[N], ne[N], idx; void init() { head = -1; idx = 0; } void add...
2024-03-19
0
155
题解 | #找出字符串中第一个只出现一次的字符#
#include<iostream> #include<vector> #include<string> using namespace std; const int N = 1005; int h[26]; vector<char> v; in...
2024-03-18
0
179
题解 | #输出单向链表中倒数第k个结点#
#include<iostream> #include<algorithm> using namespace std; const int N = 1005; int head, e[N], ne[N], idx; void init () { idx = 0, ...
2024-03-18
0
208
题解 | #字符串加密#
#include<iostream> #include<string> #include<cstring> #include<vector> #include<unordered_set> using namespace std; con...
2024-03-18
0
141
题解 | #找出字符串中第一个只出现一次的字符#
#include <iostream> #include <string> using namespace std; int g[1005]; int main() { string s; cin >> s; for (auto c...
2024-03-12
0
164
题解 | #单词倒排#
#include <cctype> #include <iostream> #include <string> #include <vector> using namespace std; vector<string> v; int m...
2024-03-12
0
166
题解 | #查找兄弟单词#
#include <vector> #include <iostream> #include <algorithm> using namespace std; int n; vector<string> strs; vector<string&...
2024-03-12
0
169
题解 | #字符串排序#
#include <cctype> #include <iostream> #include <string> #include <algorithm> using namespace std; bool cmp(char a, char b) {...
2024-03-12
0
151
题解 | #删除字符串中出现次数最少的字符#
#include<iostream> using namespace std; int g[10010]; int main() { string s; cin >> s; for (char c : s) { g[c]++; ...
2024-03-12
0
161
题解 | #汽水瓶#
#include <iostream> using namespace std; int main() { int ub = 0; while(cin >> ub) { if (ub == 0) break; i...
2024-03-12
0
179
首页
上一页
1
2
下一页
末页