DioDid
DioDid
全部文章
题解
C/C++学习(6)
Debug(1)
归档
标签
去牛客网
登录
/
注册
DioDid的博客
全部文章
/ 题解
(共45篇)
题解 第三章排序与查找| #小白鼠排队#
来自专栏
法1: 使用常规的qsort方法 #include <stdio.h> #include <stdlib.h> #include <math.h> static const int CharNum=10; typedef struct Rat { in...
C
排序与查找
2022-01-20
0
389
题解 第三章排序与查找| #整数奇偶排序#
来自专栏
使用了奇偶划分的方法 将奇数和偶数进行了划分 从而得到了数组左右两列分别为奇数和偶数 #include <stdio.h> #include <stdlib.h> #define Num 10 //思路类比划分(快速排序) //将其分类为左奇,右边偶的状态 int Divi...
C
排序与查找
2022-01-20
0
392
题解 第三章排序与查找| #特殊排序#
来自专栏
法1:采用自带函数 #include <stdio.h> #include <stdlib.h> int cmp(const void *a,const void *b) { return *(int*)a>*(int*)b; } int main() { ...
C
C++
排序与查找
2022-01-20
0
383
题解 第三章排序与查找| #成绩排序#
来自专栏
#include <stdio.h> #include <stdlib.h> typedef struct Grade { int Order; int Point; }Grade; int cmp(const void *a,const void *b)...
C
排序与查找
2022-01-20
1
346
题解 第三章排序与查找| #成绩排序#
来自专栏
#include <stdio.h> #include <stdlib.h> #include <string.h> #define MAXNAME 30 typedef struct Grade { char s[MAXNAME]; int p...
C
排序与查找
2022-01-20
0
456
题解 第三章排序与查找| #排序#
来自专栏
法1: 使用C语言自带的qsort写出的代码 #include <stdio.h> #include <stdlib.h> int cmp(const void *a, const void *b) { return *(int *)a - *(int *)b; }...
C
C++
排序与查找
2022-01-19
0
445
题解 第二章暴力破解| #路径打印#
来自专栏
#include #include #include #include #include #define MAX 15 using namespace std; int main() { ios::sync_with_stdio(false); //本句用于加快cin和cout的速度 //...
C++
暴力求解
2022-01-17
3
669
题解 第二章暴力求解| #Grading#
来自专栏
#include <bits/stdc++.h> using namespace std; int main() { int P, T, G1, G2, G3, GJ; double FinalG; while (cin >> P >> ...
C++
暴力求解
2022-01-16
0
356
题解 第二章暴力求解| #xxx定律#
来自专栏
冰雹猜想 3n+1猜想 #include <bits/stdc++.h> using namespace std; int main() { int N = 0; int StepNums = 0; while (cin >> N) { ...
C++
暴力求解
2022-01-16
0
368
题解 第二章暴力求解| #手机键盘#
来自专栏
#include <bits/stdc++.h> using namespace std; int alphabetTimes[] = {1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, ...
C++
暴力求解
2022-01-16
0
365
首页
上一页
1
2
3
4
5
下一页
末页