主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
zjx140
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
17
发帖
0
笔记
0
Ta的粉丝
177
关注数
0
粉丝数
177
获赞数
2
阅读数
118298
C语言stdlib.h库下有qsort函数
//排序首先对第二关键字排序,再对第一关键字排序。最先排顺序最大的关键字 #include <stdio.h> #include <stdlib.h> // qsort排序函数原型,只能这么写,指针类型在函数体强转,具体可以搜寻C++ reference网...
P1010
2021年9月10日 15:40
回复 1
|
赞 0
|
浏览 10.1k
层级遍历方式,每层进行对称性判断
#include<iostream> #include<queue> using namespace std; int main(){ string s; queue<int> que; //编号队列 cin >> s; ...
P1551
2022年1月6日 19:29
回复 0
|
赞 0
|
浏览 7.1k
01背包, 黄晓明的梗还没玩腻?
#include<iostream> #include<algorithm> #include<cstring> using namespace std; int main() { int dp[10001], values[35],...
P1147
2021年9月30日 16:03
回复 0
|
赞 1
|
浏览 6.2k
01背包变体,背包大小是时间总和的一半
#include<iostream> #include<vector> #include<algorithm> using namespace std; int main() { vector<int> d...
P1747
2021年9月26日 15:53
回复 0
|
赞 0
|
浏览 5.9k
C++,曾经尝试使用C语言,但是为什么memset数组初始化为INT_MAX会有问题
#include<iostream> #include<algorithm> #include<climits> #include<vector> using namespace std; int main(){ ...
P1164
2021年9月26日 14:42
回复 0
|
赞 0
|
浏览 6.3k
完数VS盈数
#include<stdio.h> #include<math.h> int main() { int fin[100], fin_l = 0; int full[100], full_l = 0; for(int i = 2;i...
P1170
2021年9月20日 16:02
回复 0
|
赞 0
|
浏览 6.2k
直接使用字符串做递归判断,需要计算大于根的字串和小于根的字串
#include<iostream> using namespace std; string larger_than_root(string s){ //计算比根大的子串 int start_pos = 0; while(start_pos <...
P1317
2021年9月16日 13:23
回复 0
|
赞 0
|
浏览 6.8k
C
#include<stdio.h> #include<string.h> int main(){ char s[100], a[100], b[100]; while(gets(s) && gets(a) &&...
P1196
2021年9月12日 13:13
回复 0
|
赞 0
|
浏览 5.7k
对于先输入大n再输入小n,小n答案可以直接输出
#include<stdio.h> int main() { int n, temp = 2; int a[20]; a[0] = 1; a[1] = 2; ...
P1197
2021年9月12日 10:06
回复 0
|
赞 0
|
浏览 5.9k
如果约数遍历使用n/2会超时,但是用sqrt(n)就不会超时
#include<stdio.h> #include<math.h> long factor_sum(long n){ long sum = 0; for(long i = 1;i <= sqrt(n);i++){ i...
P1152
2021年9月11日 10:53
回复 0
|
赞 0
|
浏览 8.2k
(C++) 优先级与字符都用栈,用map存储符号的优先级
#include<iostream> #include<stack> #include<string> #include<map> using namespace std; int main(){  ...
P1067
2021年9月10日 12:39
回复 0
|
赞 0
|
浏览 7.0k
塑身菜单(C)
#include<stdio.h> #include<stdlib.h> typedef struct dish{ char name[100]; int calorie; } dis...
P1054
2021年9月9日 20:09
回复 0
|
赞 0
|
浏览 6.3k
C语言用数组实现三叉树
#include<stdio.h> #include<string.h> #include<stdlib.h> typedef struct heu{ //结构体,存储待查询的编号与内容 int number; &nbs...
P1492
2021年9月9日 11:07
回复 0
|
赞 0
|
浏览 7.6k
就是用数组实现
#include<stdio.h> int main(){ int b[100]; //C语言布尔数组,记录人是否退出,退出为0,反之为1 int b_len; scanf(&q...
P1018
2021年9月6日 11:02
回复 0
|
赞 0
|
浏览 7.6k
C语言方法,使用了memset和memcpy
#include<stdio.h> #include<string.h> int main(){ int a[10000], t[10000]; memset(a, 0, 10000);...
P1020
2021年9月6日 10:19
回复 0
|
赞 1
|
浏览 7.3k
利用给定日期计算一年中的第几天的方法解决
#include<iostream> #include<string> using namespace std; int date_num(string s){ int days[12] = {31, 28, 31, 30, 31, ...
P1290
2021年9月5日 11:55
回复 0
|
赞 0
|
浏览 6.9k
C++ 用map
#include<iostream> #include<string> #include<map> using namespace std; int main(){ map<char,int> m, q; ...
P1157
2021年9月3日 00:27
回复 0
|
赞 0
|
浏览 7.1k
本科学校:sd
目标学校:sd
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!