主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Cookie‘s AE86
日拱一卒无有尽,功不唐捐终入海
关注
发消息
文章
0
题解
61
发帖
0
笔记
0
Ta的粉丝
137
关注数
0
粉丝数
137
获赞数
18
阅读数
38347
字符串内排序 题解:c++sort()函数实现
#include<bits/stdc++.h> using namespace std; int main(){ string s; while(cin >> s){ sort(s.begin(), s.end()); ...
P1360
2024年3月20日 08:29
回复 0
|
赞 0
|
浏览 530
二元组整数 题解:C++简便做法,利用set容器去重、排序,AC只有33,求大佬解惑
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; //用set去重 set<int> myset; ...
P1024
2024年3月18日 21:05
回复 1
|
赞 0
|
浏览 639
旋转方阵 题解:搜索的思想实现,注意输出格式不是\t
#include<bits/stdc++.h> using namespace std; int main(){ int dir[4][2] = {1, 0, 0, 1, -1, 0, 0, -1}; //下右上左 int n; ...
P1216
2024年3月18日 19:14
回复 0
|
赞 0
|
浏览 647
大整数加法 题解:c++和python实现(python不存在取值范围问题,多大都能算,就是这么强大)
c++实现 #include<bits/stdc++.h> using namespace std; int main(){ string s1, s2; int lens1, lens2, lens; int tmp; ...
P1474
2024年3月18日 16:58
回复 0
|
赞 0
|
浏览 619
迷宫 题解:一道题写了一下午(b站找视频学+自己码+各种debug),结果ac为0,f*************$@#*%k ffffffffffffuuuuuuuuccccccckkkkkkk是我太菜了,破防了家人们
#include<bits/stdc++.h> using namespace std; struct item{ int i; int j; int step; char date; }; //存储广...
P1563
2024年3月17日 20:31
回复 1
|
赞 0
|
浏览 534
平均值 题解:注意结果有小数和无小数的输出格式
#include<stdio.h> int main(){ int a, b; scanf("%d %d", &a, &b); int tmp = (a+b)/2; double res; if((a+b)%2 == 1){ ...
P1132
2024年3月18日 09:49
回复 0
|
赞 0
|
浏览 618
素数判定 题解:注意a、b两个数的大小关系
#include<bits/stdc++.h> using namespace std; bool primenumberjudge(int n); int main(){ int n, m; int cnt; while(cin &...
P1102
2024年3月17日 09:10
回复 0
|
赞 0
|
浏览 627
括号匹配 题解:c++ stack/map实现
#include<bits/stdc++.h> using namespace std; map<char, char> bkmatch = {{')', '('}, {']', '['}}; b...
P1501
2024年3月16日 11:47
回复 0
|
赞 0
|
浏览 525
删除最大最小数 题解:c++shixian
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; int ar[n]; for(int i = 0; i < n;...
P1022
2024年3月16日 11:13
回复 0
|
赞 0
|
浏览 449
击鼓传花 题解:c++自定义无头节点的循环链表实现
#include<bits/stdc++.h> using namespace std; typedef struct node{ int number; struct node* next; }LiNode, *LiList; int ma...
P1018
2024年3月16日 09:48
回复 0
|
赞 0
|
浏览 563
查找学生信息2 题解:c++ map实现
#include<bits/stdc++.h> using namespace std ; struct node { string id ; string name ; string sex ; string age ; } ...
P1476
2024年3月16日 09:23
回复 0
|
赞 0
|
浏览 473
打印日期 题解:C++实现
#include<bits/stdc++.h> using namespace std ; //判断是否是闰年 bool judge(int year){ if(year % 4 == 0 ){ if(year % 100 == 0) ...
P1410
2024年3月16日 09:21
回复 0
|
赞 0
|
浏览 583
链表合并 题解:奇技淫巧c++ #include<list> sort()实现
#include<bits/stdc++.h> using namespace std; int main() { list<int> li1; list<int> li2; int len1; int l...
P1025
2024年3月14日 11:06
回复 0
|
赞 0
|
浏览 593
链表合并 题解:c++ #include<list>实现
#include<bits/stdc++.h> using namespace std; int main() { list<int> li1; list<int> li2; list<int> li; ...
P1025
2024年3月14日 10:53
回复 0
|
赞 0
|
浏览 600
日期计算 题解:
#include<bits/stdc++.h> using namespace std; bool runjudge(int year); int main(){ int year, month, day; int run[] = {0,31,...
P1051
2024年3月13日 10:50
回复 0
|
赞 0
|
浏览 557
字符棱形 题解:
#include<bits/stdc++.h> using namespace std; bool runjudge(int year); int main(){ int n; cin >>n; ...
P1473
2024年3月13日 10:49
回复 0
|
赞 0
|
浏览 417
素数 题解:
#include<bits/stdc++.h> using namespace std; bool primenumberjudge(int n); int main(){ int n; int judge = 0; cin >...
P1375
2024年3月13日 10:49
回复 0
|
赞 0
|
浏览 404
删除字符串 题解:s.find();s.erase()实现
#include<bits/stdc++.h> using namespace std; int main() { string s; cin >> s; int mark = s.find("gzu"); while...
P1026
2024年3月13日 10:48
回复 0
|
赞 0
|
浏览 381
字母频率 题解:c++ vector、set、count实现
#include<bits/stdc++.h> using namespace std; int main(){ string s; getline(cin, s); vector<char> vs; set<c...
P1019
2024年3月13日 10:47
回复 0
|
赞 0
|
浏览 441
统计单词 题解:
#include<bits/stdc++.h> using namespace std; int main() { string s; getline(cin, s); int sle...
P1394
2024年3月13日 10:45
回复 0
|
赞 0
|
浏览 639
1
2
3
4
本科学校:湖北师范大学
目标学校:华中农业大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!