牛客779767040号
牛客779767040号
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
牛客779767040号的博客
全部文章
(共7篇)
题解 | 链表内指定区间反转
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 ...
2025-03-26
0
10
题解 | 链表内指定区间反转
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 ...
2025-03-26
0
12
题解 | 反转链表
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 ...
2025-03-26
0
20
题解 | #购物单#
#include <stdio.h> #include <string.h> #define MAX(a,b) ((a>b)?(a):(b)) int main(void) { int N = 0, m = 0; scanf("%d %d",&...
C
2022-03-18
55
2647
题解 | #合并表记录#
#include <stdio.h> //冒泡排序 void bubbleSort(int arr[][2], int arrSize, int mode) { int temp = 0; for(int i = 0 ; i < arrSize - 1 ; i++)...
C
2022-03-04
1
442
题解 | #字符串分割#
#include <stdio.h> #include <string.h> /*解法一:常规分割*/ int main(void) { char str[101]; while(scanf("%s", &str) != EOF) { ...
C
2022-02-24
0
476
题解 | #明明的随机数#
1、先尝试一下最基础的做法,即使用数组排序和数组去重的相关知识; #include <stdio.h> #include <malloc.h> /*解法一:基础版,使用排序和去重知识。*/ int remove_repeat(int *list, int size) { ...
C
2022-02-23
72
4575