首页 > 其他 > 详细

快速排序的Partition函数

时间:2014-08-10 21:25:50      阅读:554      评论:0      收藏:0      [点我收藏+]
 1 //数组中两个数的交换
 2     static void swap(int[] nums, int pos1, int pos2){
 3         int temp = nums[pos1];
 4         nums[pos1] = nums[pos2];
 5         nums[pos2] = temp;
 6     }
 7     /**
 8      * 快速排序中,在数组中选择一个数字,将数组中的数字分为两部分
 9      * start, end 介于 0 与 nums.length之间
10      */
11     static int partition(int[] nums, int start, int end){
12         
13         int index = new Random().nextInt(end + 1 - start) + start;//范围是[start end]闭区间
14         swap(nums, index, end);
15         
16         int small = start - 1;
17         for (index = start; index < end; ++index) {
18             
19             if (nums[index] < nums[end]) {
20                 ++small;
21                 if (small != index) {
22                     swap(nums, index, small);
23                 }
24             }
25             
26         }
27         
28         ++ small;
29         swap(nums, small, end);
30         return small;
31     }

 

快速排序的Partition函数,布布扣,bubuko.com

快速排序的Partition函数

原文:http://www.cnblogs.com/wanghui390/p/3903340.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!