使用结构体数组,简单易懂 摘要:解决本题我使用了结构体数组的方法 每一个小结构体数组存储一个大数,每一个大数使用长度为10000的char类型数组存储 然后比较的时候使用选择排序,内部先把要比较的两个数的长度算出来(可以使用st…… 题解列表 2024年08月01日 0 点赞 0 评论 107 浏览 评分:9.9
关于Python的基本输入输出 摘要:import sys sys.set_int_max_str_digits(100000000) while True: try: n = int(input()) …… 题解列表 2024年07月15日 0 点赞 0 评论 71 浏览 评分:0.0
编写题解 1743: 大整数排序 摘要:解题思路:两个字符串,谁的长度长谁就大,若长度相等,从第一个字符开始比较,注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>…… 题解列表 2024年05月07日 0 点赞 0 评论 93 浏览 评分:0.0
大整数排序代码 摘要:#include<stdio.h> #include<math.h> #include<string.h> void swapstr(char*,char*); void swapstr(ch…… 题解列表 2023年11月22日 0 点赞 0 评论 109 浏览 评分:6.0
基数排序-C语言 摘要:# MarkDown编辑器基本使用说明 #include #include #include typedef struct s{ char date[1001]; }S;…… 题解列表 2023年11月17日 0 点赞 0 评论 121 浏览 评分:0.0
1743: 大整数排序 (string数组,sort自定义) 摘要:```cpp #include using namespace std; string num[10005];//利用string进行大数存储 int n; bool cmp(string …… 题解列表 2022年08月06日 0 点赞 0 评论 185 浏览 评分:0.0
1743: 大整数排序 摘要:解题思路:把数当成字符串,用向量把他们装起来,长度长的一定比长度短的数大,长度一样就直接判断字符串谁大谁小注意事项:参考代码:#include<bits/stdc++.h> using namesp…… 题解列表 2022年04月12日 0 点赞 0 评论 184 浏览 评分:0.0
1743: 大整数排序 (java的两种实现) 摘要:原题: [https://www.dotcpp.com/oj/problem1743.html](https://www.dotcpp.com/oj/problem1743.html) - 思路…… 题解列表 2022年03月24日 0 点赞 0 评论 171 浏览 评分: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