燃烧的橘子
燃烧的橘子
全部文章
分类
归档
标签
去牛客网
登录
/
注册
燃烧的橘子的博客
全部文章
(共25篇)
题解 | #A+B#用stoi 做更快一点
#include <iostream> using namespace std; int func(string s) { string temp; for(int i=0;i<s.length();i++) { if(s[i]!=','&...
2023-03-10
6
411
题解 | #遍历链表#用链表的方式做,边插入边排序
#include <iostream> #include<algorithm> #include<vector> using namespace std; struct Lnode { int val; struct Lnode*next; ...
2023-03-10
3
396
题解 | #成绩排序#
#include <iostream> #include<vector> #include<algorithm> using namespace std; struct student { string name; int age; in...
2023-03-09
0
262
题解 | #a+b#
#include <iostream> #include<vector> using namespace std; int main() { string a,b; while(cin>>a>>b) { vec...
2023-03-08
0
263
题解 | #IP地址#
#include <iostream> using namespace std; bool Isip(string s) { int i=0; for(int j=0;j<s.length();j++) { if(s[j]=='.'||j=...
2023-03-08
0
264
题解 | #质因数的个数#每次从2开始除就行
#include <iostream> using namespace std; int main() { int n; int ret; while(cin>>n) { ret=0; for(int i=2;...
2023-03-06
1
451
题解 | #手机键盘#
//不需要记录每一个字符,只需要记录每组字符的大小即可 具体看解析 #include <iostream> using namespace std; int main() { int nums[]={0,3,6,9,12,15,19,22,26};//记录每组字符的大小,从下标...
2023-03-06
1
331
题解 | #成绩排序#自己写一个冒泡排序即可
//不能直接用sort,因为sort排序不稳定,会改变原有纪录的顺序 #include <iostream> #include<algorithm> #include<vector> using namespace std; struct student { ...
2023-03-06
0
323
题解 | #反序输出#
#include <iostream> using namespace std; void reverse(string s) { for(int i=0;i<s.length()/2;i++) { char c=s[i]; s[i...
2023-03-06
0
251
题解 | #约数的个数#
//思路很清晰,但时间代价有点高 #include <iostream> #include<cmath> using namespace std; int main() { int val; cin>>val; while(cin>...
2023-03-06
0
178
首页
上一页
1
2
3
下一页
末页