该按键在未按时输出高电平,按下后输出低电平。
def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: