python:实现pigeonhole sort鸽巢排序 def pigeonhole_sort(a): my_min = min(a) my_max = max(a) size = my_max - my_min + 1