易水寒learning
易水寒learning
全部文章
分类
未归档(2)
题解(22)
归档
标签
去牛客网
登录
/
注册
易水寒learning的博客
全部文章
(共24篇)
素数的判定
#include <iostream> #include <cstdio> #include <cmath> using namespace std; bool Judge(int x){ if(x<2) //...
C++
2022-01-20
0
413
进制转换2
#include <iostream> #include <cstdio> #include <vector> #include <string> using namespace std; char IntToChar(int x){ ...
C++
2022-01-20
0
372
进制转换——10转2
#include <iostream> #include <cstdio> #include <vector> #include <string> using namespace std; string Divide(string str,int ...
C++
2022-01-20
3
599
栈的应用——简单运算器
#include <iostream> #include <cstdio> #include <cctype> #include <string> #include <stack> using namespace std; int...
C++
栈
2022-01-19
0
487
向量的应用——完数与盈数
#include <iostream> #include <cstdio> #include <vector> using namespace std; vector<int> numberE; //由于完数与盈数数量未知...
C++
2022-01-19
0
444
字符串的处理
实现特殊乘法 例题4.1 #include <iostream> #include <cstdio> #include <string> using namespace std; int main(){ string str1,str2; w...
C++
2022-01-18
0
364
多种方法实现查找
线性查找 #include <iostream> #include <cstdio> #include <algorithm> using namespace std; const int MAX=100; int arr[MAX]; bool LinSear...
C++
C
2022-01-17
0
383
整数奇偶排序——比较函数sort
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; int arr[10]; bool Compare(int x,int y){ if(x%...
C++
2022-01-16
1
467
自定义函数—成绩排序
自定义函数:当比较函数返回值为true,表示第一个参数会排列在第二个参数前面,反之亦然 #include <iostream> #include <cstdio> #include <algorithm> using namespace std; const ...
C++
C
2022-01-16
0
380
排序
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; const int MAX=100; int arr[MAX]; int main(){ i...
C
C++
2022-01-16
0
322
首页
上一页
1
2
3
下一页
末页