题解列表

筛选

程序员美工梦 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; void f1_print(int n) { for(int i=1;i<=n;……

上车人数 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int M=1000+5; struct num{ int b1,b……

三进制小数 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<cmath> using namespace std; int mai……

三角形 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int n_max=100+5; int a[n_max][n_max]……

字符排列问题 (Java代码)

摘要:解题思路:全排列算法列出所有的可能,然后去检查无重复项有几个注意事项:参考代码:public class 字符串排列 { public static String [] str = new Str……