屑屑_
屑屑_
全部文章
分类
归档
标签
去牛客网
登录
/
注册
屑屑_的博客
全部文章
(共27篇)
题解 | #KiKi定义电子日历类#
#include <stdio.h> typedef struct { int year; int month; int day; }TDate; void initDate(TDate* date) { date->year = 0; ...
2024-03-26
1
200
题解 | #牛牛的单链表求和#
#include <stdio.h> #include <stdlib.h> typedef struct Node { int data; struct Node* next; }Node; // 链表初始化 Node* initList() { ...
2024-03-26
1
191
题解 | #小乐乐改数字#
#include <stdio.h> #include <string.h> char s[15]; int main() { int n; scanf("%d", &n); sprintf(s, "%d&q...
2024-03-26
1
165
题解 | #牛牛的单向链表#
#include <stdio.h> #include <stdlib.h> typedef struct Node { int data; struct Node* next; }Node; // 链表初始化 Node* initList() { ...
2024-03-26
1
163
题解 | #有序序列判断#
#include <stdio.h> #define N 55 int a[N]; int check1(int a[], int n) { for (int i = 1; i < n; i ++ ) { if (a[i] < a[i -...
2024-03-25
1
160
题解 | #有序序列合并#
#include <stdio.h> #define N 1010 int a[N]; int b[N]; int c[N]; // 归并 void merge(int a[], int b[], int n, int m) { int k = 0, i = 0, j = ...
2024-03-25
1
186
题解 | #公务员面试#
#include <stdio.h> int main() { int n; while (scanf("%d", &n) != EOF) { int max = n; int min = n; ...
2024-03-25
1
181
首页
上一页
1
2
3
下一页
末页