DNA-题解(C++代码) Sun 摘要:```cpp #include "iostream" #include "cstdio" #include "cstdlib" #include "cstring" #include "cm…… 题解列表 2019年07月31日 0 点赞 0 评论 1068 浏览 评分:9.9
优质题解 不容易系列2-题解(C++代码)【递归算法 & 错排公式秒杀】 摘要:#浅谈错排公式 ## 错排公式定义 一段序列中一共有n个元素,那么可知这些元素一共有n!种排列方法。假如在进行排列时,原来所有的元素都不在原来的位置,那么称这个排列为错排。而错排数所指的就是在一段…… 题解列表 2019年08月01日 0 点赞 0 评论 2244 浏览 评分:9.9
【明明的随机数】-题解(C++代码) 摘要:#### 原题链接:[【明明的随机数】](https://www.dotcpp.com/oj/problem1165.html "【明明的随机数】") #### 解题思路: **1、先排序…… 题解列表 2019年08月01日 0 点赞 0 评论 1003 浏览 评分:9.9
蓝桥杯算法提高VIP-计算时间-题解(C语言代码) 摘要:```c #include int main() { int n; int time,h,m,s; scanf("%d",&n); while(n--) { h=…… 题解列表 2019年08月01日 0 点赞 0 评论 636 浏览 评分:9.9
[编程入门]Sn的公式求和-题解(C++代码) 摘要: #include #include using namespace std; int p(int n) { int a=0; f…… 题解列表 2019年08月03日 0 点赞 0 评论 954 浏览 评分:9.9
[编程入门]求和训练-题解(C++代码) 摘要: #include #include using namespace std; int main() { float a,…… 题解列表 2019年08月03日 0 点赞 0 评论 694 浏览 评分:9.9
[编程入门]猴子吃桃的问题-题解(C++代码) 摘要: #include using namespace std; int main() { int N,M=1,sum=1; cin>>N; …… 题解列表 2019年08月03日 0 点赞 0 评论 828 浏览 评分:9.9
字符串输入输出函数-题解(C++代码))(格式错误。。。“题目”真坑) 摘要:不知道有多少人和我一样为了图省事,于是代码中的提示字符"please input a number:"和"please input a string:"是直接copy题目上的,到最后交程序时老是格式错…… 题解列表 2019年08月03日 0 点赞 2 评论 1149 浏览 评分:9.9
C语言训练-斐波纳契数列-题解(C++代码) 摘要://递归相对简单,这是迭代的一种: ```cpp #include using namespace std; int main() { int N; cin>>N; …… 题解列表 2019年08月03日 0 点赞 0 评论 1088 浏览 评分:9.9
[编程入门]链表之报数问题-题解(C语言代码) 摘要:```c #include #include struct Num { int star; int size; struct Num *next,*up;//next表示指向下一个…… 题解列表 2019年08月04日 0 点赞 1 评论 898 浏览 评分:9.9