sortutil.java
来自「java 3d game jme 工程开发源代码」· Java 代码 · 共 238 行
JAVA
238 行
/*
* Copyright (c) 2003-2009 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.jme.util;
import java.util.Arrays;
import java.util.Comparator;
/**
* Quick and merge sort implementations that create no garbage, unlike {@link
* Arrays#sort}. The merge sort is stable, the quick sort is not.
*/
public class SortUtil
{
/**
* Quick sorts the supplied array using the specified comparator.
*/
public static void qsort (Object[] a, Comparator comp)
{
qsort(a, 0, a.length-1, comp);
}
/**
* Quick sorts the supplied array using the specified comparator.
*
* @param lo0 the index of the lowest element to include in the sort.
* @param hi0 the index of the highest element to include in the sort.
*/
@SuppressWarnings("unchecked")
public static void qsort (Object[] a, int lo0, int hi0, Comparator comp)
{
// bail out if we're already done
if (hi0 <= lo0) {
return;
}
// if this is a two element list, do a simple sort on it
Object t;
if (hi0 - lo0 == 1) {
// if they're not already sorted, swap them
if (comp.compare(a[hi0], a[lo0]) < 0) {
t = a[lo0]; a[lo0] = a[hi0]; a[hi0] = t;
}
return;
}
// the middle element in the array is our partitioning element
Object mid = a[(lo0 + hi0)/2];
// set up our partitioning boundaries
int lo = lo0-1, hi = hi0+1;
// loop through the array until indices cross
for (;;) {
// find the first element that is greater than or equal to
// the partition element starting from the left Index.
while (comp.compare(a[++lo], mid) < 0);
// find an element that is smaller than or equal to
// the partition element starting from the right Index.
while (comp.compare(mid, a[--hi]) < 0);
// swap the two elements or bail out of the loop
if (hi > lo) {
t = a[lo]; a[lo] = a[hi]; a[hi] = t;
} else {
break;
}
}
// if the right index has not reached the left side of array
// must now sort the left partition
if (lo0 < lo-1) {
qsort(a, lo0, lo-1, comp);
}
// if the left index has not reached the right side of array
// must now sort the right partition
if (hi+1 < hi0) {
qsort(a, hi+1, hi0, comp);
}
}
public static void qsort (int[] a, int lo0, int hi0, Comparator comp)
{
// bail out if we're already done
if (hi0 <= lo0) {
return;
}
// if this is a two element list, do a simple sort on it
int t;
if (hi0 - lo0 == 1) {
// if they're not already sorted, swap them
if (comp.compare(a[hi0], a[lo0]) < 0) {
t = a[lo0]; a[lo0] = a[hi0]; a[hi0] = t;
}
return;
}
// the middle element in the array is our partitioning element
int mid = a[(lo0 + hi0)/2];
// set up our partitioning boundaries
int lo = lo0-1, hi = hi0+1;
// loop through the array until indices cross
for (;;) {
// find the first element that is greater than or equal to
// the partition element starting from the left Index.
while (comp.compare(a[++lo], mid) < 0);
// find an element that is smaller than or equal to
// the partition element starting from the right Index.
while (comp.compare(mid, a[--hi]) < 0);
// swap the two elements or bail out of the loop
if (hi > lo) {
t = a[lo]; a[lo] = a[hi]; a[hi] = t;
} else {
break;
}
}
// if the right index has not reached the left side of array
// must now sort the left partition
if (lo0 < lo-1) {
qsort(a, lo0, lo-1, comp);
}
// if the left index has not reached the right side of array
// must now sort the right partition
if (hi+1 < hi0) {
qsort(a, hi+1, hi0, comp);
}
}
/**
* Merge sorts the supplied array using the specified comparator.
*
* @param src contains the elements to be sorted.
* @param dest must contain the same values as the src array.
*/
public static void msort (Object[] src, Object[] dest, Comparator comp)
{
msort(src, dest, 0, src.length, 0, comp);
}
/**
* Merge sorts the supplied array using the specified comparator.
*
* @param src contains the elements to be sorted.
* @param dest must contain the same values as the src array.
*/
public static void msort (Object[] src, Object[] dest, int low, int high,
Comparator comp)
{
msort(src, dest, low, high, 0, comp);
}
/** Implements the actual merge sort. */
@SuppressWarnings("unchecked")
protected static void msort (Object[] src, Object[] dest, int low,
int high, int offset, Comparator comp)
{
// use an insertion sort on small arrays
int length = high - low;
if (length < INSERTION_SORT_THRESHOLD) {
for (int ii = low; ii < high; ii++) {
for (int jj = ii;
jj > low && comp.compare(dest[jj-1], dest[jj]) > 0; jj--) {
Object temp = dest[jj];
dest[jj] = dest[jj-1];
dest[jj-1] = temp;
}
}
return;
}
// recursively sort each half of dest into src
int destLow = low, destHigh = high;
low += offset;
high += offset;
int mid = (low + high) >> 1;
msort(dest, src, low, mid, -offset, comp);
msort(dest, src, mid, high, -offset, comp);
// if the list is already sorted, just copy from src to dest; this
// optimization results in faster sorts for nearly ordered lists
if (comp.compare(src[mid-1], src[mid]) <= 0) {
System.arraycopy(src, low, dest, destLow, length);
return;
}
// merge the sorted halves (now in src) into dest
for (int ii = destLow, pp = low, qq = mid; ii < destHigh; ii++) {
if (qq >= high || pp < mid && comp.compare(src[pp], src[qq]) <= 0) {
dest[ii] = src[pp++];
} else {
dest[ii] = src[qq++];
}
}
}
/** The size at or below which we will use insertion sort because it's
* probably faster. */
private static final int INSERTION_SORT_THRESHOLD = 7;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?