题解列表

筛选

冒泡法排序

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3]; int i,j;……

素数回文(欧拉筛)

摘要:解题思路:欧拉筛注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;constint ……

数学的图表

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,m,k; while(scanf("……

C++个人写法(非二分)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define ll long longint main(){ ……

哈哈哈哈哈

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#include<algorithm>using namespace std;const int N……

宏定义交换两个变量的值

摘要:解题思路:直接自定义编写交换函数注意事项:注意格式参考代码:#include <iostream>using namespace std;// 定义交换两个变量的宏// 使用临时变量实现交……