主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
ccccccyes
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
25
发帖
0
笔记
0
Ta的粉丝
40
关注数
10
粉丝数
40
获赞数
2
阅读数
20052
二叉树2 题解:
//完全二叉树,补充n来判定最大值 //查找2n和2n+1 //递归 #include <iostream> using namespace std; int calcu(int m,int n){ if(m>n) return 0...
P1264
2024年9月9日 18:27
回复 0
|
赞 0
|
浏览 482
二叉树遍历 题解:
// // #include <iostream> using namespace std; typedef struct Node{ char ch; struct Node *lchild,*rchild; } *node; ...
P1161
2024年9月9日 17:05
回复 0
|
赞 0
|
浏览 689
二叉树的建立和遍历 题解:
//给的是先序遍历的输入序列 //07/09/24 23:02 // #include <iostream> using namespace std; typedef struct Node{ char da; s...
P1109
2024年9月9日 15:52
回复 0
|
赞 0
|
浏览 663
整数奇偶排序 题解:
//07/09/24 21:15 //07/09/24 21:27 #include <iostream> #include <vector> #include <algorithm> using namespace std...
P1248
2024年9月7日 21:27
回复 0
|
赞 0
|
浏览 384
成绩排序2.0 题解:
//07/09/24 21:00 // #include <iostream> #include <algorithm> using namespace std; struct student{ int p; int q; ...
P1159
2024年9月7日 21:11
回复 0
|
赞 0
|
浏览 455
成绩排序 题解:
//07/09/24 19:36 //07/09/24 20:37 #include <iostream> #include <algorithm> using namespace std; struct student{ ...
P1151
2024年9月7日 20:43
回复 0
|
赞 0
|
浏览 475
删除字符串2 题解:
// 字符串检测 //06/09/24 21:29 //06/09/24 21:51 #include <iostream> using namespace std; int main(){ string s; cin>&...
P1027
2024年9月6日 21:51
回复 0
|
赞 0
|
浏览 1.2k
统计单词 题解:
//考虑多个空格的情况,直接排除0的输出 ,包括空格结束和末尾句号的判定 // 补足多加的1 //06/09/24 21:04 //06/09/24 21:26 #include <iostream> using namespace st...
P1394
2024年9月6日 21:27
回复 0
|
赞 0
|
浏览 1.2k
首字母大写 题解:
//老问题:if判定等号是两个 //str.size()-1 <= 数组访问越界了 RE错误 //存在换行,获取所有内容 //单词首的判定 //03/09/24 10:30 //06/09/24 20:18 #include <iost...
P1240
2024年9月6日 21:01
回复 0
|
赞 0
|
浏览 1.2k
字符移动 题解:
//03/09/24 10:15 //03/09/24 10:23 #include <iostream> using namespace std; int main(){ string str,str1,str2; getline(cin,str); ...
P1012
2024年9月3日 10:23
回复 0
|
赞 0
|
浏览 1.2k
加密算法 题解:
#include <iostream> using namespace std; int main(){ string str; int flag = 0; getline(cin,str); for(int i = 0; i<...
P1014
2024年9月3日 10:14
回复 0
|
赞 0
|
浏览 1.2k
日期 题解:
//从该题的目的出发,就是求2012任意一天上周几 //容易知道2012是leap year, 1月1日是周日, 电脑获得 #include <iostream> using namespace std; int arr[13] = {0,31,...
P1011
2024年9月1日 13:59
回复 0
|
赞 0
|
浏览 1.2k
日期计算 题解:
// time: 28mins // scanf出问题没读进去, 初始化值没考虑充分, 判据少了一个 , 调试还是坏的 #include <iostream> using namespace std; struct date{ int ...
P1051
2024年9月1日 13:38
回复 0
|
赞 0
|
浏览 1.2k
字母频率 题解:
#include <iostream> using namespace std; int arr[30] = {0}; int main(){ string str; int index; //cin>>str在读到空格...
P1019
2024年8月28日 09:50
回复 0
|
赞 0
|
浏览 1.1k
字母统计 题解:
#include <iostream> using namespace std; int arr[30] = {0}; int main(){ string str; int index; cin>>str; for...
P1292
2024年8月28日 09:35
回复 0
|
赞 0
|
浏览 1.1k
随机数 题解:
//?? //实际上是1加到20 #include <iostream> using namespace std; int main(){ int sum = 0; for(int i = 1; i<=20; i++) sum +=...
P1009
2024年8月28日 09:17
回复 0
|
赞 0
|
浏览 1.2k
字符棱形 题解:
多一行空格,不改了 //应该就是中间的是n+2 //这里是2n-1是总行数,不是最大的*数 //n是啥,n只是平行四边形的边长 #include <iostream> using namespace std; int main(){ int n,nu...
P1473
2024年8月27日 12:46
回复 0
|
赞 0
|
浏览 1.3k
进制转换3 题解:
vector总是越界输出,输出乱码 已扩充的值失效 //输入可能是字符和数字混合 //最大为36进制数就是只有26个字母 //输出也要字符和数字混合 #include <iostream> #include <vector> #include...
P1422
2024年8月26日 23:39
回复 0
|
赞 1
|
浏览 1.2k
八进制 题解:
//分析:int够了 #include <iostream> #include <vector> using namespace std; int main(){ int n,num; vector<int> oct; while...
P1417
2024年8月26日 14:45
回复 0
|
赞 0
|
浏览 343
二进制数 题解:
//一个正整数转化成二进制 //去掉前面的0,但不是所有的0 //多轮输入 #include <iostream> #include <vector> using namespace std; int main(){ unsigned int n...
P1380
2024年8月26日 14:14
回复 0
|
赞 0
|
浏览 327
1
2
本科学校:北京工业大学
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!