主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
wordC
关注
发消息
文章
0
题解
9
发帖
0
笔记
0
Ta的粉丝
289
关注数
0
粉丝数
289
获赞数
4
阅读数
81502
1147-中餐厅(c语言)
分析 这是简单背包问题。这里背包的值只能为0或者1。0代表有 i 个菜,j 的钱时,没有能在 i 个菜中凑出总价为 j 的方案;1反之。 代码 #include <stdio.h> int main() { int n, k; in...
P1147
2021年3月18日 11:00
回复 0
|
赞 0
|
浏览 7.1k
1123-小偷的背包(c语言)
分析 这是一个简单背包问题。推荐学习视频:https://www.bilibili.com/video/BV1AJ411Y7Fm?p=29 代码 #include <stdio.h> #include <string.h> int main...
P1123
2021年3月18日 10:23
回复 0
|
赞 0
|
浏览 9.6k
1086-采药,动态规划,注释详细(c语言)
推荐学习视频:背包问题 https://www.bilibili.com/video/BV1K4411X766 本题实际上就是0-1背包问题。 #include <stdio.h> #include <stdlib.h> //定义药的数据结...
P1086
2021年3月17日 20:57
回复 0
|
赞 0
|
浏览 9.5k
1025-链表合并,注释详细(c语言)
#include <stdio.h> #include <stdlib.h> typedef struct node { int data; struct node *next; }node; //创建链表 node* creat...
P1025
2021年3月17日 10:22
回复 0
|
赞 0
|
浏览 8.6k
1405-遍历链表,注释详细(c语言)
#include <stdio.h> #include <stdlib.h> typedef struct node { int data; struct node *next; }node; //创建链表 node* createL...
P1405
2021年3月17日 10:18
回复 0
|
赞 0
|
浏览 8.2k
1533-交换结点,注释详细(c语言)
#include <stdio.h> #include <stdlib.h> //定义结点 typedef struct node { int data; struct node *next; }node; //创...
P1533
2021年3月17日 10:14
回复 0
|
赞 0
|
浏览 8.7k
1018-使用循环链表模拟传花过程
key:使用循环链表模拟击鼓传花过程 #include <stdio.h> #include <stdlib.h> typedef struct node { int data; struct node *next; }node; ...
P1018
2021年3月17日 10:01
回复 0
|
赞 1
|
浏览 8.3k
1015单链表(注释详细)
#include <stdio.h> #include <malloc.h> //定义单链表结点 typedef struct node{ //这里用使用typedef定义新的数据类型 int data;//数据域 struct no...
P1015
2021年3月7日 21:11
回复 0
|
赞 3
|
浏览 11.3k
1016-字符分类(c语言)
思路 运用<ctype.h>的库函数可以很方便地解决本题。 代码 #include <stdio.h> #include <string.h> #include <ctype.h> int main() { ...
P1016
2021年3月2日 11:02
回复 0
|
赞 0
|
浏览 10.2k
本科学校:guangjin
目标学校:深圳大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!