主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Cookie‘s AE86
日拱一卒无有尽,功不唐捐终入海
关注
发消息
文章
0
题解
61
发帖
0
笔记
0
Ta的粉丝
137
关注数
0
粉丝数
137
获赞数
18
阅读数
38356
括号的匹配 题解:c++ stl中的stack容器和map容器实现。
#include<bits/stdc++.h> using namespace std; //设置括弧的优先级 map<char,int> bkPriority = { {'<', 0}, {'(', 1}, {'[', 2}, {'{',...
P1067
2024年3月24日 11:29
回复 0
|
赞 1
|
浏览 849
括号匹配问题 题解:c++实现
#include<bits/stdc++.h> using namespace std; struct node{ char data; int index; }; int main(){ ...
P1296
2024年3月23日 16:24
回复 1
|
赞 0
|
浏览 871
集合中的相同元素 题解:题目没有要求循环输入,我没用循环输入AC为0,用了循环输入AC100,奇怪
#include<bits/stdc++.h> using namespace std; int main(){ int n; while(cin >> n){ int sum = 0; int myset1[n]; int ...
P5105
2024年3月27日 10:25
回复 0
|
赞 0
|
浏览 526
单词翻转 题解:
#include<bits/stdc++.h> using namespace std; int main(){ string s; string word = ""; getline(cin, s); stack<stri...
P3666
2024年3月27日 09:59
回复 0
|
赞 0
|
浏览 529
密码的翻译 题解:
#include<bits/stdc++.h> using namespace std; int main(){ string s; while(cin >> s){ int len = s.size(); ...
P3502
2024年3月27日 09:21
回复 0
|
赞 0
|
浏览 610
n个数的最小公倍数 题解:
#include<bits/stdc++.h> using namespace std; int gcd(int a, int b){ if(b == 0) return a; else return gcd(b, a % b); } in...
P3684
2024年3月27日 09:10
回复 0
|
赞 0
|
浏览 544
三角形判定 题解:
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; for(int i = 0; i < n; i++){ ...
P2018
2024年3月26日 16:49
回复 0
|
赞 0
|
浏览 601
找出众数 题解:c++实现,set去重,count计算出现次数
#include<bits/stdc++.h> using namespace std; int main (){ int n, tmp; cin >> n; set<int> myset; int arr...
P2014
2024年3月26日 16:19
回复 0
|
赞 0
|
浏览 504
字符串替换 题解:C++ find()、replace()实现
#include<bits/stdc++.h> using namespace std; int main (){ string s; cin >> s; transform(s.begin(), s.end(),s.begin...
P2011
2024年3月26日 15:54
回复 0
|
赞 0
|
浏览 470
整数去重 题解:注意n的取值范围,时间复杂度不能高于O(nlogn),所以不能直接使用两个for循环,在内层for循环外加一层if判断,跳过一些已经被删除的元素的for循环
#include<bits/stdc++.h> using namespace std; int main(){ int n, tmp; while(cin >> n){ int arr[n]; int...
P2021
2024年3月26日 15:04
回复 0
|
赞 0
|
浏览 502
二叉树 题解:
#include<bits/stdc++.h> using namespace std; int main(){ int x,y; while(cin >> x >> y){ while(x != y){ ...
P1233
2024年3月25日 18:55
回复 0
|
赞 0
|
浏览 530
哈夫曼编码 题解:c++优先队列实现,注意全为同一字符的特殊情况,例如:BBBBBBBBBB
#include<bits/stdc++.h> using namespace std; void func(string s){ int len = s.size(); set<char> myset; for(int i =...
P1562
2024年3月25日 15:43
回复 0
|
赞 0
|
浏览 551
哈夫曼树 题解:c++ priority_queue实现
#include<bits/stdc++.h> using namespace std; int main() { int n; while(cin >> n){ &n...
P1382
2024年3月24日 14:34
回复 0
|
赞 0
|
浏览 545
括号的匹配 题解:用的stl中的stack,总是报错Process terminated with status -1073741819 。没有死循环的情况,不知道是不是栈溢出的问题,求大佬帮忙康康
#include<bits/stdc++.h> using namespace std; //设置括弧的优先级 map<char,int> bkPriority = { {'<', 0}, {'(', 1}, {'[', 2}, {'{',...
P1067
2024年3月23日 15:23
回复 2
|
赞 0
|
浏览 492
合并果子 题解:c++ priority_queue<int> 实现
#include<bits/stdc++.h> using namespace std; int main(){ int n; priority_queue<int, vector<int>,...
P1544
2024年3月23日 17:22
回复 0
|
赞 0
|
浏览 551
复数 题解:c++实现
#include<bits/stdc++.h> using namespace std; void add(double xa, double xb, double ya, double yb){ double a = xa + ya; double...
P1021
2024年3月21日 10:40
回复 0
|
赞 0
|
浏览 571
动态查找问题 题解:c++,使用int类型vector容器,使用algorithm中的find()函数实现
#include<bits/stdc++.h> using namespace std; int main(){ int n, q; cin >> n; //构建int类型的vector vector<int&...
P1477
2024年3月21日 09:56
回复 0
|
赞 1
|
浏览 449
平方和与倒数和 题解:
#include<bits/stdc++.h> using namespace std; int main (){ double a, b, c; cin >> a >> b >> c; double s...
P1045
2024年3月21日 09:32
回复 0
|
赞 0
|
浏览 410
阶乘和 题解:C++ 一个for循环,14行代码解决
#include<bits/stdc++.h> using namespace std; int main(){ long long n; long long sn = 0; long long tmp = 1; cin >...
P1044
2024年3月20日 20:45
回复 0
|
赞 0
|
浏览 489
字符串匹配 题解:用find()函数实现,AC只用33,求大佬康康。疑惑点在代码首行
//疑惑:会不会有重复输出匹配到的字符串的情况没有考虑进去, //例如:”sdfacsdfbc“与字符串”sdf[ab]c”匹配,"sdfacsdfbc"会被输出两次 #include using namespace std; int main(){ //输入 ...
P1378
2024年3月20日 16:27
回复 2
|
赞 0
|
浏览 502
1
2
3
4
本科学校:湖北师范大学
目标学校:华中农业大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!