题解列表

筛选

利用标准库的快速排序

摘要:解题思路:              没有什么难点,只要记住qsort函数就行了注意事项:参考代码:#include <stdio.h> #include <stdlib.h> int cmp……

排序最简单代码Python 入门级别

摘要:解题思路:注意事项:参考代码:ls=list(map(int,input().split())) #将一串数处理后,放入列表ls.sort()for j in ls:    print(j)     ……

Python 挑战史上最短代码

摘要:参考代码:n=int(input())for i in range(2,n+1):    for j in range(2,i):        if i%j==0:            break……

有不足可以指出!

摘要:解题思路:注意事项:需要会string的定义和使用参考代码:#include <iostream>//核心在于当大位数大于小位数,删除大位数 #include<string>int sc[1000];……