主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
sincerely_LM
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
28
发帖
0
笔记
0
Ta的粉丝
230
关注数
0
粉丝数
230
获赞数
23
阅读数
241902
核心思路:创建两个数组(元素相同),来模拟匹配过程
#include <iostream> #include <algorithm> using namespace std; //核心思路,创建两个相同的数组来模拟匹配过程。二重循环遍历两组数组,但是要注意对相同元素的处理 int main(int arg...
P1024
2021年2月20日 19:01
回复 0
|
赞 3
|
浏览 8.4k
对于输入输出格式的查缺补漏 %lf ,%.1f
#include <stdio.h> #include <stdlib.h> int main(int argc, char const *argv[]) { double n1,n2,x1,x2; char op; scanf("%lf %l...
P1021
2021年2月20日 16:55
回复 0
|
赞 0
|
浏览 8.8k
(字符串暴力匹配思想)难点在于找到因子后,匹配最长连续因子
#include <stdio.h> #include <stdlib.h> #define Maxsize 10000 int main(int argc, char const *argv[]) { int k,start,stop,N,coun...
P1020
2021年2月20日 16:02
回复 0
|
赞 1
|
浏览 7.6k
(无头结点)循环单链表—纯C
#include <stdio.h> #include <stdlib.h> typedef struct LNode { int Number; struct LNode * next; } LNode; int main(int ar...
P1018
2021年2月19日 17:30
回复 0
|
赞 3
|
浏览 10.4k
创建以C为表头结点,再以尾插法建表
#include <iostream> #include <algorithm> using namespace std; typedef struct Node { int Element; // 节点中的元素为整数类型 stru...
P1015
2021年2月19日 15:09
回复 0
|
赞 0
|
浏览 8.7k
纯C,注意对1单独处理
#include <stdio.h> #include <stdlib.h> int main(int argc, char const *argv[]) { int n,N ; scanf("%d",&n); if(n==1){//对...
P1013
2021年2月18日 18:08
回复 0
|
赞 1
|
浏览 8.6k
关键在于如何计算离4/12/相距多少天
#include <stdio.h> #include <stdlib.h> int Month[]={18,31,30,31,31,30,31,30,31}; //int data[]={6,7,1,2,3,4,5}; int main(int arg...
P1011
2021年2月18日 17:33
回复 0
|
赞 0
|
浏览 9.1k
利用快速排序划分思想进行奇偶排序,再利用sort函数
#include <iostream> #include <algorithm> #define Maxsize 1000 using namespace std; int main(int argc, char const *argv[]) { ...
P1010
2021年2月18日 15:35
回复 0
|
赞 0
|
浏览 10.9k
1
2
本科学校:家里蹲大学
目标学校:大力顿大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!