题解列表

筛选

数据结构-静态链表 (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",&……

P1064 (C++代码)

摘要:解题思路:注意事项:参考代码:暴力枚举(其实就是普通算法的总称)有超时的迹象,毕竟!#include<cstdio> #include<cstring> #include<algorithm> ……