题解列表
2006(c语言包看懂得)
摘要:解题思路:干就行了注意事项:参考代码:#include <stdio.h>int main(){ int n; scanf("%d",&n); if(n%2!=……
链表删除练习(作代码记录用)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>typedef ……
人见人爱A+B(模拟)
摘要:解题思路:模拟注意事项:参考代码:#include<iostream>#include<cmath>usingnamespacestd;co……
众数问题(极简模拟)
摘要:解题思路:模拟注意事项:参考代码:#include<iostream>#include<cmath>usingnamespacestd;co……
人民币问题(循环枚举)
摘要:解题思路:循环枚举注意事项:参考代码:#include<iostream>#include<cmath>usingnamespacestd;……
不容易系列2(递推 + 排列)
摘要:解题思路:递推(排列)注意事项:参考代码:#include<iostream>#include<cmath>usingnamespacestd;……
上车人数(模拟 + 递推)
摘要:解题思路:递推系数规律, 计算第二站上下车人数, 按照递推公式计算第x站人数注意事项:第n站下车的人数是第n-1站出发时的人数参考代码:#include<iostream>#inclu……