题解列表

筛选

可 AC (C语言代码)

摘要:解题思路: 注意事项: 参考代码: #include<stdio.h> #include<math.h> void move(unsigned int value,int n) ……

可 AC(C语言代码)

摘要:解题思路: 注意事项:          比较简单,看解析即可;注意解析中的数组均为逆序存储 参考代码: #include<stdio.h> #include<math.h> v……

字符排列问题 (C++代码)

摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int count,n,book[21]; char str[21]; int ……

筛排处理 (C++代码)

摘要:解题思路: 利用C++的STL中的set进行去重和排序注意事项: 输出两个空行#include "iostream" #include "algorithm" #include "set" us……