1716: 数据结构-快速排序-C语言 摘要:```c //快速排序 #include #include void quicksort(int a[], int first, int end); int partition(in…… 题解列表 2021年12月24日 0 点赞 0 评论 919 浏览 评分:10.0
1129: C语言训练-排序问题<2> 快速排序法 摘要:解题思路:采用快速排序法,采用最左边的数为基准数,将小于等于基准点的数全部放到基准点右边,将大于等于基准点的数全部放到基准点左边,实现从大到小的排序注意事项:相比冒泡排序,每次交换是跳跃式的,最差情况…… 题解列表 2021年12月24日 0 点赞 0 评论 531 浏览 评分:0.0
题解 1161: 回文数(二)(python) 摘要:def n_to_ten(n,m): j = 0 sum =0 for i in str(m)[::-1]: sum += int(i)*n**j …… 题解列表 2021年12月24日 0 点赞 0 评论 795 浏览 评分:0.0
str = replace(old, new)替换所有空格 摘要:就这???? 就这??? while 1: st = input() NewSt = st.replace(' ', '') print…… 题解列表 2021年12月24日 0 点赞 0 评论 428 浏览 评分:0.0
divmod(x, y)函数,集商和余数于一体 摘要: # a, b = divmod(x, y) divmod()函数会返回两个值,第一个为 x // y, 第二个返回值为 x % y MoneyVariety_lis =…… 题解列表 2021年12月24日 0 点赞 0 评论 887 浏览 评分:0.0
1715: 数据结构-折半插入排序-C语言 摘要:```c //折半插入排序 #include #include #define max 1000 void BiInsertsort(int a[],int len); int…… 题解列表 2021年12月24日 0 点赞 0 评论 945 浏览 评分:9.9
2644: 烤干机 c++分治思想 摘要:解题思路:这道题第一眼会想到全排列或者优先队列毫无疑问这是错的,因为时间复杂度太高了所以我想的是分治算法(因为最近比较菜想了好久)int f[500002];定义数组 int a(即A),b(即B)首…… 题解列表 2021年12月24日 0 点赞 0 评论 589 浏览 评分:7.3
1688: 数据结构-字符串插入 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string a,b; int n; cin >…… 题解列表 2021年12月23日 0 点赞 0 评论 497 浏览 评分:9.9
入门]自定义函数之数字后移 摘要:解题思路:解题思路:其实重点就再最后一条printf语句中的取余哪里,其余的读入数据就不多说了,通过for循环读入即可;来看一下这个运算符 % 的魅力吧。int a[10]={1,2,3,4,5,6,…… 题解列表 2021年12月23日 0 点赞 0 评论 512 浏览 评分:0.0