Huster水仙
Huster水仙
全部文章
分类
题解(112)
归档
标签
去牛客网
登录
/
注册
Huster水仙的博客
水仙不开花?你装蒜呢!
TA的专栏
16篇文章
0人订阅
algorithm
16篇文章
911人学习
全部文章
(共120篇)
题解 | #特殊乘法#
//大整数可以考虑用string处理,很方便 #include<iostream> #include<string> using namespace std; int main(){ string str1,str2; &nbs...
C++
2023-01-07
0
213
题解 | #找位置#
//用字符数组存放输入 //额外数组存放重复字符的位置 #include<iostream> #include<cstring> using namespace std; char s[101]; int position[100];//记录位置 int main...
C++
2023-01-06
0
304
题解 | #打印极值点下标#
//按题目要求分别判断即可 #include<iostream> using namespace std; int s[81]; int jizhi[81];//存放极值点 int main(){ int k,x; whil...
C++
2023-01-06
0
276
题解 | #找最小数#
//只用比较,不用存储所有数据 #include<iostream> using namespace std; int main(){ int n,x,y,xmin,ymin; scanf("%d",&n); &nb...
C++
2023-01-06
20
373
题解 | #查找#
//采用了线性、二分(自带、自定义)、散列(自带、自定义)方法 //可根据需要删去对应注释 #include<iostream> #include<algorithm> #include<unordered_map> using namesp...
C++
2023-01-06
0
242
题解 | #整数无序数组求第K大数#
//快排稍作修改,优化:无需对整个数组完整排序 //只用在包含目标值的区间中递归排序 #include <iostream> #include<cstdlib> using namespace std; void swap(int &a,in...
C++
2023-01-05
0
371
题解 | #奥运排序问题#
/*思想不难,排名不用排序,有国家指标比你高,你的排名就++ 很坑的是对于输入人口为0的处理:奖牌为0,比率也为0;奖牌不为0,比率无穷大 */ #include<iostream> #include<limits> using namespace std;...
C++
2023-01-04
5
435
题解 | #小白鼠排队#
#include<iostream> #include<algorithm> using namespace std; struct rat{ int weight; char color[20]; &nb...
C++
2023-01-02
0
253
题解 | #整数奇偶排序#
#include<iostream> #include<algorithm> using namespace std; int a[10]; bool compare(int x,int y){ ...
C++
2023-01-02
0
290
题解 | #成绩排序#
#include<iostream> #include<algorithm> using namespace std; struct student{ int number; int grade; &nbs...
C++
2023-01-02
0
291
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页