主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
sincerely_LM
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
28
发帖
0
笔记
0
Ta的粉丝
230
关注数
0
粉丝数
230
获赞数
23
阅读数
241928
快排划分思想来进行奇偶排序
#include <iostream> #include <algorithm> using namespace std; bool Compare(const int &a,const int &b){ return a >...
P1248
2021年3月18日 20:30
回复 1
|
赞 2
|
浏览 9.9k
二叉树的创建方法值得关注
#include <stdio.h> #include <stdlib.h> typedef struct TNode { struct TNode * Lchild; struct TNode * Rchild; char Data; }T...
P1109
2021年3月7日 21:40
回复 1
|
赞 3
|
浏览 10.7k
短小精悍,递归解决
#include <stdio.h> #include <stdlib.h> int main(int argc, char const *argv[]) { int a , Num; scanf("%d %d",&a,&Nu...
P1043
2021年2月24日 16:57
回复 1
|
赞 0
|
浏览 10.2k
利用栈
#include <iostream> #include <bits/stdc++.h> using namespace std; int Reverse(int x); int main(int argc, char const *argv[]) {...
P1276
2021年3月26日 21:51
回复 0
|
赞 0
|
浏览 7.5k
核心语句:cout<<(char)((str[i] - 'A' + 21)%26 + 'A');
#include <iostream> #include <bits/stdc++.h> using namespace std; int main(int argc, char const *argv[]) { string str,lock1...
P1269
2021年3月24日 22:17
回复 0
|
赞 0
|
浏览 10.1k
思路:取子串+将数字字符还原为数字
#include <iostream> #include <bits/stdc++.h> using namespace std; int transint(string str){//数字字符串转换为数字 int Sum=0; rever...
P1267
2021年3月24日 21:30
回复 0
|
赞 1
|
浏览 7.9k
转自CSDN博主「zoharg」
#include<iostream> #include<ctype.h> #include<iomanip> #include<cmath> #include<string> #include<cstdlib>...
P1271
2021年3月21日 00:06
回复 0
|
赞 1
|
浏览 8.7k
签到题
#include <iostream> #include <algorithm> using namespace std; typedef struct Cai { int info; int cost; }Cai; bool Cmp...
P1247
2021年3月17日 21:57
回复 0
|
赞 0
|
浏览 7.1k
利用十进制为中间桥梁,实现a->十进制->b进制。(a进制转十进制按权展开,十进制转b进制用栈处理)
#include <iostream> #include <algorithm> #include <math.h> using namespace std; int main(int argc, char const *argv[]) ...
P1239
2021年3月16日 22:03
回复 0
|
赞 1
|
浏览 7.1k
字符串暴力匹配,利用str.erase 和 str.insert 来完成替换(替换=删除+插入)
#include <iostream> #include <string> using namespace std; int main(int argc, char const *argv[]) { string str1,str2,str3; ...
P1196
2021年3月13日 22:12
回复 0
|
赞 0
|
浏览 7.7k
字符化处理:注意用str-'0'转换回数字
#include <iostream> #include <string> using namespace std; int main(int argc, char const *argv[]) { string str1,str2; whi...
P1168
2021年3月10日 23:42
回复 0
|
赞 1
|
浏览 8.2k
75%的原因:如果本身是质数就要单独处理,否则就会超时
#include <iostream> #include <math.h> using namespace std; int FindBigX(int x,int y); int judge(int Num); int main(int argc, c...
P1156
2021年3月10日 20:42
回复 0
|
赞 2
|
浏览 9.4k
余数入栈,整数自除
#include <stdio.h> #include <stdlib.h> int main(int argc, char const *argv[]) { int stack[10000]={0}; int top=-1; int num;...
P1110
2021年3月7日 22:05
回复 0
|
赞 0
|
浏览 7.7k
类比1018(击鼓传花)
#include <stdio.h> #include <stdlib.h> typedef struct LNode { int Number; struct LNode * next; } LNode; int main(int argc...
P1081
2021年3月5日 22:01
回复 0
|
赞 0
|
浏览 7.6k
利用散列函数(哈希表),如果冲突则地址数+1
#include <stdio.h> #include <stdlib.h> int main(int argc, char const *argv[]) { int N,length; int A[100000]={0}; int Ha...
P1066
2021年3月2日 23:12
回复 0
|
赞 1
|
浏览 6.6k
任他描述天花烂坠,直接冒泡就完事了
#include <stdio.h> #include <stdlib.h> int main(int argc, char const *argv[]) { int A[10000]={0}; int N,k; k=0; scanf...
P1060
2021年3月1日 22:18
回复 0
|
赞 0
|
浏览 7.4k
理清逻辑,难度不大
#include <stdio.h> #include <stdlib.h> typedef struct Stu { int Number; char Class[20]; char name[20]; double grade1...
P1052
2021年2月27日 15:00
回复 0
|
赞 1
|
浏览 8.8k
预处理。定义一个二维数组来记录每个月的天数
#include <iostream> #include <cstdio> using namespace std; int Data[2][13] = { {0,31,28,31,30,31,30,31,31,30,31,30,31}, {0...
P1051
2021年2月25日 17:17
回复 0
|
赞 2
|
浏览 9.1k
题本本身不难,就是输出格式上需要注意
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> int main(int argc, char const *argv[]) { bool found; ...
P1034
2021年2月23日 17:21
回复 0
|
赞 0
|
浏览 8.4k
Merge函数思想(没错就是二路归并排序中的merge函数)
#include <stdio.h> #include <stdlib.h> typedef struct LNode { int data; struct LNode * next; }LNode; int main(int argc, ...
P1025
2021年2月22日 17:08
回复 0
|
赞 0
|
浏览 9.4k
1
2
本科学校:家里蹲大学
目标学校:大力顿大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!