题解列表

筛选

1738: 排序 -python归并排序

摘要:注意事项:注意输入输出参考代码:# 归并排序_升序def merge_sort(nums):   &n……

筛选N以内的素数 python

摘要:解题思路:注意事项:参考代码:n=int(input())tag=0foriinrange(2,n+1):  ifi>2: &nbs……

猴子吃桃的问题python

摘要:解题思路:注意事项:参考代码:n=int(input())num=1foriinrange(1,n):  num=2*(num+1)print(num)……

1738: 排序 -希尔排序

摘要:**注意输入输出**```python#希尔排序defshell_sort(nums):#间隙初始为数组长度的一半gap=len(nums)//2#当间隙大于0时继续排序whilegap>0:#……

1738: 排序 -插入排序

摘要:注意事项:注意输入输出参考代码:# 插入排序_升序def insertion_sort(nums):   &a……

1738: 排序 -选择排序

摘要:注意事项:注意输入输出格式参考代码:def selection_sort(nums):    length&a……

判断是否为两位数之入门

摘要:解题思路:注意事项:参考代码:whileTrue:  try:    n=int(input……