题解列表
小白写法,代码虽然长了点,但是很容易理解
摘要:*代码里面有注释*
------------
```cpp
#include
using namespace std;
typedef long long ll;
ll facto……
更适合c++的奇偶排序
摘要:解题思路:两个数组,一个存储,一个变化注意事项:参考代码:#include <iostream>#include <algorithm>using namespace std;int main() {……
不会链表,STL,就只能用这种笨方法咯
摘要:```cpp
#include
using namespace std;
int a[100]={0};
//find()函数用来判断是否 "出圈" 结束
bool find(int *s,……