输入n个数,实现快速排序并输出结果。quicksort(data,low,i-1);/*递归调用*/quicksort(data,i+1,high);