关于Python的基本输入输出 摘要:import sys sys.set_int_max_str_digits(100000000) while True: try: n = int(input()) …… 题解列表 2024年07月15日 0 点赞 0 评论 91 浏览 评分:0.0
1743: 大整数排序 (java的两种实现) 摘要:原题: [https://www.dotcpp.com/oj/problem1743.html](https://www.dotcpp.com/oj/problem1743.html) - 思路…… 题解列表 2022年03月24日 0 点赞 0 评论 202 浏览 评分:0.0
大整数排序-题解(C++代码) 摘要:```cpp #include #include #include #include using namespace std; bool cmp(string a,string b…… 题解列表 2020年03月26日 0 点赞 0 评论 349 浏览 评分:0.0
1743: 大整数排序 (string数组,sort自定义) 摘要:```cpp #include using namespace std; string num[10005];//利用string进行大数存储 int n; bool cmp(string …… 题解列表 2022年08月06日 0 点赞 0 评论 229 浏览 评分:0.0
基数排序-C语言 摘要:# MarkDown编辑器基本使用说明 #include #include #include typedef struct s{ char date[1001]; }S;…… 题解列表 2023年11月17日 0 点赞 0 评论 150 浏览 评分:0.0
大整数排序 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<bits/stdc++.h>#include<cstring>#include<cmath>#include<cst…… 题解列表 2019年02月26日 0 点赞 0 评论 450 浏览 评分:0.0
编写题解 1743: 大整数排序 摘要:解题思路:两个字符串,谁的长度长谁就大,若长度相等,从第一个字符开始比较,注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>…… 题解列表 2024年05月07日 0 点赞 0 评论 112 浏览 评分:0.0
Hifipsysta-1743-大整数排序(C++代码) 摘要:```cpp #include #include #include #include using namespace std; bool sort_rule(string a, str…… 题解列表 2022年02月10日 0 点赞 0 评论 186 浏览 评分:0.0
1743: 大整数排序 摘要:解题思路:把数当成字符串,用向量把他们装起来,长度长的一定比长度短的数大,长度一样就直接判断字符串谁大谁小注意事项:参考代码:#include<bits/stdc++.h> using namesp…… 题解列表 2022年04月12日 0 点赞 0 评论 197 浏览 评分:0.0
大整数排序-题解(C语言代码) 摘要:#include #include int main() { int n; int i,j,a,b; char s[110][1100],t[1100]; while(scanf("%d…… 题解列表 2020年04月10日 0 点赞 0 评论 576 浏览 评分:0.0