题解列表

筛选

换位置-双向逆序

摘要:解题思路:如果n个人如果是线性排列,要使123456…n变成n…654321, 那么需要的时间总数就是(n-1)+…+5+4+3+2+1=n*(n-1)/2;即1右移n-1步, 2右移n-2步…再回到……

C++:类和访问权限

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;class sum{……

恺撒密码-模拟

摘要:解题思路:模拟注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ stri……

c++信使(msner)floyd

摘要:```cpp#include using namespace std;const int INF=0x3f3f3f3f;int days=0;int dp[105][105……