Mi4mooLL
Mi4mooLL
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Mi4mooLL的博客
全部文章
(共46篇)
题解 | #小球走过路程计算#
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); fl...
2024-03-22
0
148
题解 | #统计输入正数个数#
import java.util.*; public class Main { public static void main(String[] args) { int count = 0; Scanner scanner = new Scanner(Sys...
2024-03-22
0
163
题解 | #牛牛的单链表求和#
#include<stdio.h> typedef struct node * Node; struct node { int val; Node next; }; int main(void) { int n, m, sum = 0; scanf("%d...
2023-03-15
0
230
题解 | #反转链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param pHead ListNode类 * @return ListNode类 */ struct ListNode*...
2023-03-07
0
219
题解 | #【模板】链表#
#include <math.h> #include <stdio.h> #include<stdlib.h> typedef struct listN * Node; struct listN { int data; Node P; }; Nod...
2023-03-05
0
193
题解 | #【模板】队列#
#include <stdbool.h> #include <stdio.h> #include<string.h> typedef struct Queue * PtrQ; struct Queue{ int x[100000]; int top...
2023-03-05
0
235
题解 | #栈的压入、弹出序列#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param pushV int整型一维数组 * @param pushVLen int pushV数组长度 * @param popV int整型一维数组 * @param pop...
2023-03-04
0
254
题解 | #点击消除#
#include <stdio.h> #include<string.h> struct Stack { char str[300000]; int top; }; typedef struct Stack* Pstack; Pstack inistack(v...
2023-03-04
0
253
题解 | #牛牛的单向链表#
#include <stdio.h> typedef struct ListNode* Ptrnode; struct ListNode{ int data; Ptrnode NEXT; }; Ptrnode BuildList(int n, int a[]); void...
2023-02-24
0
218
题解 | #【模板】栈#
#include <stdio.h> #include <string.h> struct Stack { int str[100000]; int top; }; typedef struct Stack* Pstack; Pstack inistack(...
2023-01-16
0
262
首页
上一页
1
2
3
4
5
下一页
末页