冒泡排序-递归-python

def bubble_sort(a,n):
    if n == -1 :
       print(a)
       #return a
    for i in  range(n):
        if a[i]

 

你可能感兴趣的:(数据结构与算法)