软件2001-20206821-傅子文
软件2001-20206821-傅子文
全部文章
分类
归档
标签
去牛客网
登录
/
注册
软件2001-20206821-傅子文的博客
全部文章
(共21篇)
题解 | #二叉排序树#
#include <stdio.h> #include <stdlib.h> typedef struct Node { int val; struct Node* left; struct Node* right; } Node ; void ...
2024-03-20
0
175
题解 | #二叉排序树#
#include <stdio.h> #include <stdlib.h> typedef struct Node { int val; struct Node* left; struct Node* right; } Node ; void ...
2024-03-20
0
159
题解 | #矩阵最大值#
#include <stdio.h> int main() { int a, b; while (scanf("%d %d", &a, &b) != EOF) { // 注意 while 处理多个 case // 64...
2024-03-20
0
156
题解 | #最大的两个数#
#include <stdio.h> int outPutData[2][5]; void judgeMaxTwo(int a, int b, int c, int d, int col) { int temp = 0; int array[4] = {a, b, c...
2024-03-20
0
178
题解 | #排序#
#include <stdio.h> #include <string.h> int main() { int n; while (scanf("%d ", &n) != EOF) { // 注意 while 处理多个 case ...
2024-03-20
0
189
题解 | #a+b#
#include <stdio.h> #include <string.h> int main() { char a[1000], b[1000]; int result[1000] = {0}; while (scanf("%s %s&q...
2024-03-20
0
164
题解 | #大整数排序#
#include <stdio.h> #include <string.h> int main() { int n; while (scanf("%d ", &n) != EOF) { // 注意 while 处理多个 case ...
2024-03-19
0
217
题解 | #找位置#
#include <stdio.h> #include <string.h> #include <stdbool.h> typedef struct KeyValue { char key;//字符 int position[100];//出现的...
2024-03-19
0
206
题解 | #统计单词#
#include <stdio.h> #include <string.h> int main() { char array[100][100]; int i=0,j=0; while (gets(array[i])) { // 注意 while 处理...
2024-03-17
0
170
题解 | #遍历链表#
#include <stdio.h> typedef struct Node { int value; struct Node* next; } Node; //按升序插入 void insert(Node* head, int newValue) { Nod...
2024-03-17
0
168
首页
上一页
1
2
3
下一页
末页