题解列表
题解 1129: C语言训练-排序问题
摘要:直接上代码!!!!!!!!!!!!!!!!!!!!!!
```cpp
#include //万能头
using namespace std;
bool cmp(int a,int b)
{
……
题解 1001: [编程入门]第一个HelloWorld程序(消磨时间)
摘要:# 我就是在消磨时间!!!!!
如果程序报错,就是空格呀,符号个数呀,所以我认为最好复制,还省时间。

摘要:解题思路:通过倒序循环来完成“*”和“ ”的输出;注意事项:空格和换行不要忘了哦参考代码:#include<iostream>using namespace std;int main(){ in……
1319: 没有上司的晚会
摘要:```cpp
#include
#include
using namespace std;
const int maxn=6001;
int n,dp[maxn][2],hap[maxn];……
java实现链表升序合并
摘要:解题思路: 1.用输入的数据创建好两个链表。2.将两个无序链表合并成一个链表:用一个变量记录链表1的尾结点,使其下个节点指向链表2。3. 对合并后的链表进行排序:排序采取排序算法中的归并排序。个人认为……
蓝桥杯2014年第五届真题-斐波那契(详细解答)
摘要:在解答本题前,我会先介绍一些待会会用到的知识。1、取模公式:(a+b)%p=(a%p+b%p)%p; (a-b)%p=(a%p-b%p)%p; ……