这里的代码来源于StackOverflow,前几天面试,有个上机题,要求考虑多核的特性对一亿长度的随机整数数组进行排序,当时的想法和这个代码一样,因为排序算法中,快排比较适合多线程实现,所以回来后在StackOverflow找到了这部分代码。其中关键点在这里,注意第四行privatevoidquicksort(intpLeft,intpRight){if(pLeft<pRight){intstoreIndex=partition(pLeft,pRight);if(count.get(...
查看全文