立志实干
立志实干
全部文章
分类
无链接题解(1)
题解(49)
归档
标签
去牛客网
登录
/
注册
立志实干的博客
全部文章
(共49篇)
n的阶乘(递归模板)例8.1
/* 学会计算复杂度,20!=2*10^18,int 20*10^8,long 9*10^18 Factorial,递归:调用自身,递归出口 递归模板 */ //使用递归函数 #include <iostream> #include <cstdio> using nam...
王道机试
模板
例题
第八章
M
2021-03-06
1
721
今年暑假不AC(2037)例题7.4
http://acm.hdu.edu.cn/showproblem.php?pid=2037 /* 该题难在,想到,如何看尽可能多的完整节目的方案。如何找到最佳方案的步骤。程序也就是代码并不难。 */ #include <iostream> #include <cstdio>...
第七章
王道机试
D
例题
2021-03-06
0
528
鸡兔同笼(例题7.1)
#include <iostream> #include <cstdio> using namespace std; int main(){ int n; int m,t;//m最少,t最多 while(scanf("%d",&n)!=EO...
第七章
王道机试
E
例题
2021-03-06
0
514
1978:扩号匹配问题(做法1:闭门造车,做法2:作者代码)
做法1:闭门造车 #include <iostream> #include <cstdio> #include <string> #include <stack> using namespace std; const int MAXSIZE=100...
第五章
王道机试
E
例题
2021-03-06
0
593
Zero-complexity Transposition(上海交通大学复试上机题)
#include <iostream> #include <cstdio> #include <stack> using namespace std; stack<long long> Num; int main(){ int n; ...
第五章
王道机试
E
2021-03-06
0
714
猫狗收容所.队列P69(做法1:闭门造车)
书上没有链接5.2 队列 P69(书上代码也奇奇怪怪) #include <iostream> #include <cstdio> #include <queue> #include <vector> using namespace std; qu...
第五章
王道机试
例题
M
2021-03-05
0
745
3254:约瑟夫问题No.2(做法1:闭门造车)
/////////////////////////////////////////////////////////////////////////////////////////////////////// //书上说用队列,就用队列,书上的代码,我真的一时半会儿,来不了,有点匪夷所思,不太符合,我...
第五章
王道机试
例题
吐血
M
2021-03-05
0
781
完数与盈数
#include <iostream> #include <cstdio> #include <string> using namespace std; //陈独秀的代码 // int main(){ // printf("E: 6 28\nG: 12...
第五章
王道机试
例题
M
2021-03-04
0
541
习题4.6 字符串匹配(只有一个【】)
///////////////////////////////////////////////////////////////////////////////////////////////////// //这儿的题怎么都这么错综复杂,你敢信,这题可以有很多[],多损啊 //////////////...
习题
王道机试
D
第四章
吐血
2021-03-03
3
636
习题4.6 字符串匹配(运行超时)
///////////////////////////////////////////////////////////////////////////////////////////////////// //这儿的题怎么都这么错综复杂 ////////////////////////////////...
习题
王道机试
D
第四章
吐血
2021-03-03
0
711
首页
上一页
1
2
3
4
5
下一页
末页