zzfyupup
zzfyupup
全部文章
分类
题解(151)
归档
标签
去牛客网
登录
/
注册
zzfyupup的博客
TA的专栏
219篇文章
8人订阅
C语言刷题
179篇文章
944人学习
双循环打印图像
19篇文章
983人学习
排序
11篇文章
313人学习
剑指offer刷题集
3篇文章
255人学习
《剑指offer》刷题集
2篇文章
266人学习
深度优先算法dfs合集
2篇文章
289人学习
Java算法刷题
3篇文章
378人学习
全部文章
(共262篇)
题解 | #兔子的序列#
来自专栏
int ispf(int num) { int i; for(i=1;i<num;i++) { if(i*i==num) return 1; } return 0; } int* deletenum(int *ar...
2022-10-21
0
253
题解 | #[NOIP1999]回文数#
来自专栏
#include <stdio.h> #include<malloc.h> #include<string.h> char c[100]={0}; //存放 int Ishuiwen(char *str ,int len) { int left=0...
2022-10-21
0
287
题解 | #牛牛的链表添加节点#
来自专栏
#include<stdio.h> #define INIT() (Node*)malloc(sizeof(Node)) typedef struct node{ //带头结点的链表 int data; struct node* next; }Node,*List;...
2022-10-20
1
338
题解 | #牛牛的链表删除#
来自专栏
#include <stdio.h> #include<malloc.h> struct Node { int val; struct Node* next; }; //大框架先创建 struct Node* createNode(int val) { ...
2022-10-20
0
337
题解 | #牛牛的双链表求和#
#include <stdio.h> #include <stdlib.h> typedef struct Node { int num; struct Node *next; }LinkNode; LinkNode *creat_link(int n){ ...
2022-10-20
1
286
题解 | #牛牛的平面向量#
#include <stdio.h> #include<malloc.h> // struct space // { // int x; // int y; // }; int main() { int n,i,j; int sumx...
2022-10-20
0
380
题解 | #牛牛的单链表求和#
来自专栏
#include <stdio.h> #include<malloc.h> struct Node { int val; struct Node* next; }; //大框架先创建 struct Node* createNode(int val) { ...
2022-10-20
1
266
题解 | #牛牛的时钟#
#include <stdio.h> #include<malloc.h> struct Time { int h; //时 int m; //分 int s; //秒 }; int main() { int n,i;...
2022-10-20
5
260
题解 | #牛牛的书#
来自专栏
#include <stdio.h> struct Book { char name[50]; int price; }; int main() { int n,i,j; scanf("%d",&n); struct Book st...
2022-10-19
2
238
题解 | #KiKi设计类继承#
#include <stdio.h> #define pi 3.14 #include<stdio.h> struct shap { int x; int y; }; struct un { struct shap m; int r; ...
2022-10-19
0
274
首页
上一页
6
7
8
9
10
11
12
13
14
15
下一页
末页