首页 > 代码库 > java 快速排序 ,用nio里的IntBuffer实现,
java 快速排序 ,用nio里的IntBuffer实现,
java实现一个快速排序的算法,用nio里的IntBuffer实现,
IntBuffer提供了slice,position,capacity等方法可以很方便的操纵数组.用来做排序很是方便.
快速排序由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。
1 public class QuickSort { 2 3 static void sort(IntBuffer items, IntBuffer resultItems) { 4 if (items.capacity() == 1) { // 拆分到只剩1个元素时停止迭代,保存数据到结果队列 5 resultItems.put(items.get()); 6 return; 7 } 8 int midPos = items.capacity() / 2; // 从数组的中间选择一个数进行二分 9 int midValue =http://www.mamicode.com/ items.get(midPos); 10 IntBuffer lowItems = IntBuffer.allocate(items.capacity()); 11 IntBuffer highItems = IntBuffer.allocate(items.capacity()); 12 for (int i = 0; i < items.capacity(); i++) { 13 if (i == midPos) 14 continue;// 跳过自己 15 int curValue =http://www.mamicode.com/ items.get(i); 16 if (curValue <= midValue) { 17 lowItems.put(curValue); 18 } else { 19 highItems.put(curValue); 20 } 21 } 22 // 把选的比较数放入较小的集合中,防止死循环 23 if (lowItems.position() < highItems.position()) 24 lowItems.put(midValue); 25 else 26 highItems.put(midValue); 27 lowItems.flip();// 截取有效的数据 28 lowItems = lowItems.slice(); 29 highItems.flip(); 30 highItems = highItems.slice();// 截取有效数据 31 if (lowItems.capacity() > 0) { 32 QuickSort.sort(lowItems, resultItems); 33 } 34 if (highItems.capacity() > 0) { 35 QuickSort.sort(highItems, resultItems); 36 } 37 } 38 39 public static void main(String[] agrs) { 40 IntBuffer sourceItems = IntBuffer.wrap(new int[] { 5, 2, 10, 1, 3, 8, 5, 6, 1 }); 41 IntBuffer resultItems = IntBuffer.allocate(sourceItems.capacity()); 42 QuickSort.sort(sourceItems, resultItems); 43 System.out.println(Arrays.toString(resultItems.array())); 44 } 45 }
java 快速排序 ,用nio里的IntBuffer实现,
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。