赞
踩
while(begin1<=end1 && begin2<=end2) { //这边这个等号是关键 if (arr[begin1]<=arr[begin2]) { tmp[k++]=arr[begin1++]; } ......... }