题解列表

筛选

矩阵的对角线之和

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int a[5][5],sum=0,sum1=0;  ……

罗列完美数

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int wanmei(int n){    int sum=0;    for(in……

完美数的判断

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int x,sum=0;    cin>>x;    ……

60行代码!!!

摘要:解题思路:1.先创建p,q两个链表数组(我也不知道叫什么,随便取的,大佬勿喷)               2.输入数据               3.合并数组(为了后面的排序)   &nbs

1319: 没有上司的晚会

摘要:```cpp #include #include using namespace std; const int maxn=6001; int n,dp[maxn][2],hap[maxn];……

题解 1129: C语言训练-排序问题

摘要:直接上代码!!!!!!!!!!!!!!!!!!!!!! ```cpp #include //万能头 using namespace std; bool cmp(int a,int b) {……

C++解矩阵的两对角线的元素之和

摘要:矩阵的两对角线的相加,需要注意的是当矩阵是奇数阶的时候,要去除对角线的相同元素即可 ```cpp #include using namespace std; int main() { ……

自然数的拆分DFS

摘要:```cpp #include using namespace std; int n,d[9999999]; void dfs(int x,int c) //x表示的是已经找出……