题解列表

筛选

数据结构-静态链表 (C++代码)

摘要:解题思路:注意事项:参考代码:麻烦的要死的题目:#include <stdio.h>   #include <string.h>      #define MAXSIZE 11         ……

P1074 (C++代码)

摘要:解题思路:注意事项:参考代码:暴力bfs:#include <iostream>   #include <stdio.h>   #include <queue>   #include <stri……

三角形的旗子 (C++代码)

摘要:解题思路:注意事项:参考代码:幼稚的题目:#include<cstdio> using namespace std; int main() { int a,b; scanf("%d",&……

排列 (C语言代码)

摘要:解题思路:注意事项:参考代码:/*输入第一行是一个整数N,表示数据的组数。每组数据占一行,代表四张卡片上的数字(保证四个数字都不同,且0<数字<10)。输出对每组卡片按从小到大的顺序输出所有能由这四张……