主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Jeff_zhu
66666
关注
发消息
文章
0
题解
8
发帖
2
笔记
0
Ta的粉丝
578
关注数
2
粉丝数
578
获赞数
16
阅读数
110465
最开始不理解,参考他人的博文
https://blog.csdn.net/bifei8718/article/details/39321481
P1056
2020年4月11日 18:54
回复 0
|
赞 1
|
浏览 8.7k
大数乘法两种解法,优化竖式法,先乘后进位法
共两种,第二种好理解 第一种1.借鉴 https://leetcode.com/problems/multiply-strings/discuss/17605/Easiest-JAVA-Solution-with-Graph-E...
P1475
2020年2月18日 20:13
回复 1
|
赞 5
|
浏览 21.6k
简洁~~,_(:ι」∠)_好饿,但是不想动
#include<bits/stdc++.h> using namespace std; int main() { int a, b; while(~scanf("%d %d", &a, &b)) { int ans...
P1003
2020年2月17日 19:05
回复 0
|
赞 2
|
浏览 10.7k
vector模拟环形链表简洁版
#include using namespace std; int main() { int n; while(~scanf("%d", &n)) { vector v; for(int i = 0...
P1018
2020年2月17日 13:33
回复 0
|
赞 1
|
浏览 11.9k
将学生数据按成绩从高到低排序,实际样例有些歧义哈
#include<bits/stdc++.h> using namespace std; struct Node { string name; int year, score; }; /* 按成绩从高到低排序, 如果成绩相同则按姓名字符的...
P1404
2020年2月15日 10:36
回复 0
|
赞 1
|
浏览 11.8k
简洁,_(:ι」∠)_好饿,但是不想动
#include<bits/stdc++.h> using namespace std; int main() { string s; while(cin >> s) { sort(s.begin(), s.end())...
P1360
2020年2月15日 09:38
回复 0
|
赞 1
|
浏览 8.5k
( ̄^ ̄゜)尴尬
#include <bits/stdc++.h> using namespace std; struct node { double goldNum, medalNum, population; int countryID; int ran...
P1310
2020年2月14日 21:50
回复 0
|
赞 2
|
浏览 9.8k
复杂度O(N),直接输出
#include using namespace std; int main() { // freopen("1.txt", "r", stdin); string s; while(cin >> s) { int size...
P1027
2020年2月13日 23:26
回复 1
|
赞 3
|
浏览 10.6k
本科学校:家里蹲
目标学校:继续家里蹲
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!