WsjjsZ
WsjjsZ
全部文章
分类
归档
标签
去牛客网
登录
/
注册
WsjjsZ的博客
TA的专栏
52篇文章
0人订阅
多多练习C++
52篇文章
357人学习
全部文章
(共87篇)
题解 | #完全数计算#
来自专栏
#include <iostream> using namespace std; int main() { int n; cin>>n; int count=0; for(int j=1;j<=n;j++){ int ...
2023-03-01
0
190
题解 | #输出单向链表中倒数第k个结点#
来自专栏
#include <cstddef> #include <iostream> using namespace std; struct ListNode { int m_nKey; ListNode* m_pNext; ListNode(int x): ...
2023-02-28
0
246
题解 | #统计字符#
来自专栏
#include <cctype> #include <iostream> using namespace std; int main() { string str; getline(cin,str); int alpha=0,num=0,space=0,other=...
2023-02-28
0
204
题解 | #删除字符串中出现次数最少的字符#
来自专栏
#include <iostream> #include <map> using namespace std; int main() { string str; cin>>str; map<char,int> mp; ...
2023-02-28
0
249
题解 | #图片整理#
来自专栏
#include <iostream> #include<vector> #include <algorithm> using namespace std; int main() { vector<char> vec; string...
2023-02-28
0
240
题解 | #单词倒排#
来自专栏
#include <iostream> #include <string> #include <vector> using namespace std; int main() { string word; getline(cin,word); ...
2023-02-28
0
196
题解 | #蛇形矩阵#
来自专栏
#include <iostream> using namespace std; int main() { int n; cin>>n; int str[n][n]; for(int i=0;i<n;i++){ for...
2023-02-28
0
230
题解 | #汽水瓶#
来自专栏
#include <iostream> using namespace std; int main() { int bow; while(cin>>bow){ if(bow==0)break; int count=0; ...
2023-02-27
0
187
题解 | #简单密码#
来自专栏
#include <iostream> #include <string> using namespace std; int main() { string code; cin>>code; int len=code.size(); ...
2023-02-27
0
276
题解 | #字符串排序#
来自专栏
#include <cctype> #include <iostream> #include <vector> using namespace std; int main() { vector<char> vec; string st...
2023-02-27
0
196
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页