主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
promising
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
27
发帖
1
笔记
0
Ta的粉丝
82
关注数
0
粉丝数
82
获赞数
5
阅读数
15594
字符串匹配 - 兰州大学 题解:
可以使用include<string.h>解决,strstr() 函数作用:搜索一个字符串在另一个字符串中的第一次出现的位置,若找到所搜索的字符串,则该函数返回第一次匹配的字符串的地址,若未找到所搜索的字符串,则返回NULL。所以我们要用到指针来保存位置。 #include&...
P1717
2024年3月20日 21:44
回复 0
|
赞 1
|
浏览 484
最大递增子序列和 题解:
#include<stdio.h> int max(int x,int y) { if(x>y) return x; &nbs...
P1940
2024年3月17日 22:09
回复 0
|
赞 0
|
浏览 470
中南 - 最大连续子序列 题解:
求助,为什么输出会多一行啊 输入数据 8 6 -2 11 -4 13 -5 -2 10 20 -10 1 2 3 4 -5 -23 3 7 -21 6 5 -8 3 2 5 0 1 10 3 8 -1 -5 -2 3 -1 0 -2 0 4 -1 -2 -4 -3 ...
P1664
2024年3月17日 20:40
回复 2
|
赞 0
|
浏览 460
最长连续公共子序列 题解:
请注意:如果有多个相同长度的子串符合要求,输出最后一个。 做题的时候一定要看提示!!! #include<stdio.h> #include<string.h> int main() { char s1[10...
P1730
2024年3月17日 14:56
回复 0
|
赞 0
|
浏览 548
最大上升子序列和 题解:
#include<stdio.h> int max(int a,int b)//max函数 { if(a>b) return a; &nbs...
P1257
2024年3月14日 00:07
回复 0
|
赞 1
|
浏览 516
最大序列和 题解:
#include<stdio.h> int main() { long long a[1000000],dp[1000000];//dp[i]表示以a[i]结尾的最大序列和 long long ma...
P1172
2024年3月13日 17:25
回复 0
|
赞 1
|
浏览 621
最大序列和 题解:
这个代码为啥输出不正确啊,求大佬指点 #include<stdio.h> int main() { long long n,i; long long a[1000000]; &n...
P1172
2024年3月12日 17:38
回复 2
|
赞 0
|
浏览 468
链表合并 题解:
求助,哪里写的有问题啊,为啥运行出来结果不对 #include<stdio.h> #include<stdlib.h> int main() { typedef struct LNode &...
P1025
2024年3月10日 21:03
回复 4
|
赞 0
|
浏览 539
单链表 题解:
用数组保存输入的五个数,冒泡排序后再用尾插法插入链表,遍历链表 #include<stdio.h> #include<stdlib.h> int main() { typedef struct LNode  ...
P1015
2024年3月10日 17:23
回复 0
|
赞 0
|
浏览 604
击鼓传花 题解:
#include<stdio.h> #include<stdlib.h> int main() { typedef struct LNode {  ...
P1018
2024年3月10日 16:42
回复 0
|
赞 0
|
浏览 694
猴子报数 题解:
脑细胞死完了,终于做出来了 #include<stdio.h> #include<stdlib.h> int main() { typedef struct LNode { &...
P1081
2024年3月10日 15:55
回复 0
|
赞 0
|
浏览 413
查找第K小数 题解:
#include<stdio.h> int main() { int n,k; int i,j,t; int a[1000]; &...
P1383
2024年3月9日 14:39
回复 0
|
赞 0
|
浏览 696
查找1 题解:
暴力解法 #include<stdio.h> int main() { int n,m; int i,j; int a[100]; &nb...
P1388
2024年3月9日 14:04
回复 0
|
赞 1
|
浏览 561
查找学生信息 题解:
#include<stdio.h> #include<string.h> int main() { int n,m; int i,j; whil...
P1177
2024年3月8日 22:08
回复 0
|
赞 0
|
浏览 466
查找学生信息2 题解:
#include<stdio.h> #include<string.h> int main() { typedef struct stu { &...
P1476
2024年3月8日 21:39
回复 0
|
赞 0
|
浏览 486
字符串排序3 题解:
感觉没有写错啊,但是没有输出,有没有佬帮忙看看哪里有问题,跪谢 #include<stdio.h> #include<string.h> int main() { int n; ...
P1261
2024年3月8日 17:02
回复 3
|
赞 0
|
浏览 769
后缀子串排序 题解:
#include<stdio.h> #include<string.h> int main() { char a[100]; char b[100][100]; &nbs...
P1294
2024年3月8日 15:43
回复 0
|
赞 1
|
浏览 515
删除字符串2 题解:
根据删除字符串这个题改写,基本代码没改,个人觉得很好理解(代码小白,不喜勿喷) #include<stdio.h> #include<string.h> int main() { char s[100];//原字符串 ...
P1027
2024年3月6日 11:22
回复 0
|
赞 0
|
浏览 485
统计单词 题解:
这个方法看起来很简单,但是if语句那块没看懂,不懂为啥count是每个单词的字母个数,有没有大佬能解答一下 #include<stdio.h> #include<string.h> int main() {  ...
P1394
2024年3月5日 21:12
回复 2
|
赞 0
|
浏览 421
偷菜时间表 题解:
#include<stdio.h> int main() { int n; scanf("%d",&n); int i=1; ...
P1053
2024年3月5日 11:11
回复 0
|
赞 0
|
浏览 438
1
2
本科学校:吉林师范大学
目标学校:武汉纺织大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!