- 博客(2)
- 收藏
- 关注
原创 排序算法---桶排序、快排、希尔排序、归并排序、堆排序
排序桶排序快排希尔排序归并排序堆排序 桶排序 数据结构实验之排序三:bucket sort:https://acm.sdut.edu.cn/onlinejudge3/contests/3481/problems/C #include <stdio.h> #include <stdlib.h> int x[105]={0}; int main() { int n,i; scanf("%d",&n); for(i=0;i<n;i++) {
2020-12-23 00:13:44 408 1
原创 Python实验1_Python入门
A - A+B Problem—1000 st=input().split(); a=int(st[0]); b=int(st[1]); print(a+b); B - A+B for Input-Output Practice (I)—1010 while True: try: st=input().split(); s=int(st[0])+int(st[1]); print(s); except: break; w
2020-09-27 23:21:21 248
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人