1743: 大整数排序 (string数组,sort自定义) 摘要:```cpp #include using namespace std; string num[10005];//利用string进行大数存储 int n; bool cmp(string …… 题解列表 2022年08月06日 0 点赞 0 评论 188 浏览 评分:0.0
1743: 大整数排序 摘要:解题思路:把数当成字符串,用向量把他们装起来,长度长的一定比长度短的数大,长度一样就直接判断字符串谁大谁小注意事项:参考代码:#include<bits/stdc++.h> using namesp…… 题解列表 2022年04月12日 0 点赞 0 评论 184 浏览 评分:0.0
Hifipsysta-1743-大整数排序(C++代码) 摘要:```cpp #include #include #include #include using namespace std; bool sort_rule(string a, str…… 题解列表 2022年02月10日 0 点赞 0 评论 157 浏览 评分:0.0
大整数排序-题解(C++代码) 摘要:重载 ``` #include #include #include #include #include using namespace std; int n,m; struct bi…… 题解列表 2020年05月26日 0 点赞 0 评论 447 浏览 评分:9.9
大整数排序-题解(C++代码) 摘要:```cpp #include #include #include #include using namespace std; bool cmp(string a,string b…… 题解列表 2020年03月26日 0 点赞 0 评论 325 浏览 评分:0.0
Kanna-大整数排序-C++ 摘要: #include #include #include using namespace std; string num[10005];//利用stri…… 题解列表 2020年02月02日 0 点赞 0 评论 369 浏览 评分:9.9
大整数排序 (C++代码)stl大法好 摘要:```cpp #include "iostream" #include "cstdio" #include "cstdlib" #include "cstring" #include "cm…… 题解列表 2019年08月05日 0 点赞 0 评论 1153 浏览 评分:9.9
大整数排序-题解(C++代码)请注意多组测试样例 摘要:解题思路: 不是很复杂,利用string依次进行大数输入,也不需要多做处理,自定义一个比较函数sort一下就解决了参考代码:#include<bits/stdc++.h> #defin…… 题解列表 2019年06月05日 0 点赞 0 评论 504 浏览 评分:0.0
大整数排序 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<bits/stdc++.h>#include<cstring>#include<cmath>#include<cst…… 题解列表 2019年02月26日 0 点赞 0 评论 420 浏览 评分:0.0