燃烧的橘子
燃烧的橘子
全部文章
分类
归档
标签
去牛客网
登录
/
注册
燃烧的橘子的博客
全部文章
(共25篇)
题解 | #阶乘#
#include <iostream> using namespace std; int jc(int a) { if(a==0) { return 1; } else return a*jc(a-1); } int test...
2023-02-26
0
266
题解 | #找位置#
//最笨的方法。。。 #include <iostream> #include<vector> using namespace std; bool Isrecord(vector<char>v,char s) { for(int i=0;i<v.s...
2023-02-26
0
263
题解 | #大整数排序#
//不用sort,当然用sort更简单 #include <iostream> #include<map> using namespace std; void Mysort(map<int,string>&v,int n) { for(int j=0;j...
2023-02-25
0
325
题解 | #矩阵最大值#
#include <iostream> using namespace std; int main() { int m,n; while(cin>>m>>n) { int nums[m][n]; int p...
2023-02-24
0
247
题解 | #IP地址#
#include <iostream> using namespace std; #include <vector> bool isIP(string s) { int t=0; for(int i=0;i<s.length();i++) {...
2023-02-23
3
287
首页
上一页
1
2
3
下一页
末页