主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
fzh
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
34
发帖
0
笔记
24
Ta的粉丝
316
关注数
0
粉丝数
316
获赞数
10
阅读数
22290
成绩排序 - 华科 题解:
#include<bits/stdc++.h> using namespace std; typedef struct Grade { string name; int year, grade; ...
P1404
2024年3月22日 17:34
回复 0
|
赞 0
|
浏览 613
特殊排序 题解:
#include<bits/stdc++.h> using namespace std; int main() { int n; while (cin >> n) &nb...
P1400
2024年3月21日 22:35
回复 0
|
赞 0
|
浏览 528
畅通工程 题解:仿Prim算法
#include<bits/stdc++.h> using namespace std; typedef struct Tri { int i; int j; &nbs...
P1312
2024年3月21日 22:14
回复 0
|
赞 0
|
浏览 563
反序相等 题解:就几行
#include<bits/stdc++.h> using namespace std; int main() { int t; for (int i = 1000; i <= 1111...
P1461
2024年3月20日 17:28
回复 0
|
赞 0
|
浏览 382
IP地址 题解:就是判断是否合理有点点麻烦,其他还好
#include<bits/stdc++.h> using namespace std; int limit[4] = { 1000,100,10,100 }; int ChangeStrToInt(string str) { &...
P1023
2024年3月19日 21:07
回复 0
|
赞 0
|
浏览 637
吃糖果 题解:构建二叉树解决,二叉树的叶子结点个数就是方案个数
#include<bits/stdc++.h> using namespace std; typedef struct TNode { int val; struct TNode* rchild...
P1197
2024年3月19日 12:47
回复 0
|
赞 0
|
浏览 469
后缀子串排序 题解:substr+sort
#include<bits/stdc++.h> using namespace std; int main() { string str; while (cin >> str) &n...
P1294
2024年3月18日 15:27
回复 0
|
赞 0
|
浏览 474
判断是否是整数 题解:两个开关
#include<bits/stdc++.h> using namespace std; int main() { string str; while (cin >> str) &nb...
P1031
2024年3月18日 15:15
回复 0
|
赞 0
|
浏览 424
合并果子 题解:优先级队列
#include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; &nbs...
P1544
2024年3月18日 10:37
回复 0
|
赞 0
|
浏览 653
喝饮料 题解:就直接做呗
#include<bits/stdc++.h> using namespace std; typedef struct Drink { int ml; int price; }; ...
P1478
2024年3月16日 15:12
回复 0
|
赞 0
|
浏览 541
质因数个数 题解:
#include<bits/stdc++.h> using namespace std; bool J(int n) { if (n <= 1) return false; for (i...
P1156
2024年3月12日 14:49
回复 0
|
赞 0
|
浏览 500
统计单词 题解:
#include<bits/stdc++.h> using namespace std; int main() { string str; while (getline(cin, str)) &...
P1394
2024年2月7日 17:08
回复 0
|
赞 0
|
浏览 680
旋转矩阵 - 北航 题解:不断的对矩阵进行转置和对称变换即可
#include<bits/stdc++.h> using namespace std; //对矩阵进行转置 void TM(vector<vector<int>>& m1, int n) { &nbs...
P1377
2024年2月7日 16:56
回复 0
|
赞 0
|
浏览 833
删除字符串 题解:C++用repalce和find
using namespace std; int main() { string str; cin >> str; while (str.find...
P1026
2024年2月7日 15:21
回复 0
|
赞 0
|
浏览 636
成绩的等级 题解:
#include<bits/stdc++.h> using namespace std; int main() { int d; cin >> d; &nb...
P1038
2024年2月7日 14:44
回复 0
|
赞 0
|
浏览 556
日期差值 题解:通过获取当年天数来计算
#include<bits/stdc++.h> using namespace std; //用于判断是不是闰年 int Judge(int x) { if (x % 400 == 0 || (x % 100 != 0 &am...
P1290
2024年2月7日 14:40
回复 0
|
赞 0
|
浏览 741
击鼓传花 题解:
//就按照题目说的用链表实现把 #include #include struct LNode { int data; struct LNode* next; }; int main() { &n...
P1018
2024年2月2日 11:13
回复 0
|
赞 1
|
浏览 1.1k
击鼓传花 题解:用不带头结点的循环链表(带头结点的太麻烦了)
//就按照题目说的用链表实现把 #include<stdio.h> #include<malloc.h> struct LNode { int data; struct LNode*...
P1018
2024年1月31日 01:31
回复 0
|
赞 1
|
浏览 676
字母统计 题解:用map比较简洁
#include <bits/stdc++.h> using namespace std; int main() { string str; map<char,int>mp; while(cin>>str) ...
P1292
2024年1月29日 14:10
回复 0
|
赞 0
|
浏览 567
成绩排序2.0 题解:用pair 实现排序
#include<bits/stdc++.h> using namespace std; int cmp(pair<int, int>a, pair<int, int >b) { if (...
P1159
2024年1月29日 04:16
回复 0
|
赞 0
|
浏览 529
1
2
本科学校:浙江理工大学
目标学校:贵州大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!