码迷,mamicode.com
首页 >  
搜索关键字:int-max    ( 1549个结果
算法初步——哈希表B.1038统计同成绩学生
#include <bits/stdc++.h> #include<math.h> #include <string> using namespace std; const int MAX_LEN = 100005; int main(){ int n; int temp[101]; for(int ...
分类:编程语言   时间:2020-01-06 14:58:03    阅读次数:106
算法初步——哈希表B1029/A1084. 旧键盘
#include <bits/stdc++.h> #include<math.h> #include <string> using namespace std; const int MAX_LEN = 2005; void upper(char *s, int length) { int i = 0 ...
分类:编程语言   时间:2020-01-05 20:53:58    阅读次数:117
简单计数排序
1 #include <cstdio> 2 #include <iostream> 3 #include <cstring> 4 using namespace std; 5 void num_Count(int a[],int n,int max) 6 { 7 int i,j; 8 int buc ...
分类:编程语言   时间:2020-01-05 20:27:08    阅读次数:86
算法初步——排序 A1012.The Best Rank(25)
#include <bits/stdc++.h> #include<math.h> using namespace std; const int MAX_LEN = 2005; //const int MAX_D = 31; struct student{ int id; int Cgrade; i ...
分类:编程语言   时间:2020-01-05 13:43:49    阅读次数:66
算法初步——排序B1015/A1062.德才论
#include <bits/stdc++.h> #include<math.h> using namespace std; const int MAX_LEN = 100005; //const int MAX_D = 31; struct student{ int number; int fir ...
分类:编程语言   时间:2020-01-05 12:02:00    阅读次数:72
入门模拟——(进制转换)B1022.D进制的A+B
#include <bits/stdc++.h> #include<math.h> using namespace std; const int MAX_LEN = 100005; const int MAX_D = 31; int main(){ int a,b,n; cin>>a; cin>>b ...
分类:其他好文   时间:2020-01-01 21:05:43    阅读次数:95
入门模拟——(字符串处理)B1021个位数统计
第二次: #include <bits/stdc++.h> #include <math.h> #include <cstring> #include <cstdio> using namespace std; const int MAX_LEN = 100005; //const int MAX_ ...
分类:其他好文   时间:2020-01-01 20:51:22    阅读次数:75
入门模拟——(字符串处理)B1006.换个格式输出整数
#include <bits/stdc++.h> #include<math.h> using namespace std; const int MAX_LEN = 100005; //const int MAX_D = 31; int main(){ int n; cin>>n; int Bdig ...
分类:其他好文   时间:2020-01-01 20:16:34    阅读次数:75
入门模拟——B1032挖掘机技术哪家强
#include <bits/stdc++.h> #include<math.h> using namespace std; const int MAX_LEN = 100005; struct Student{ int number; int grade; }temp[MAX_LEN]; int ...
分类:其他好文   时间:2019-12-29 16:35:43    阅读次数:71
【计蒜课】【数据结构】【栈的复习】
#include <stdio.h> #include <stdlib.h> #include <ctype.h> #define ERROR 0 #define OK 1 typedef struct Stack { int *elements; int max_size, top_index; ...
分类:其他好文   时间:2019-12-27 13:19:25    阅读次数:64
1549条   上一页 1 ... 11 12 13 14 15 ... 155 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!