📄 arraysort.java
字号:
/****************************************************************************** * * Copyright (c) 1999-2003 AppGate Network Security AB. All Rights Reserved. * * This file contains Original Code and/or Modifications of Original Code as * defined in and that are subject to the MindTerm Public Source License, * Version 2.0, (the 'License'). You may not use this file except in compliance * with the License. * * You should have received a copy of the MindTerm Public Source License * along with this software; see the file LICENSE. If not, write to * AppGate Network Security AB, Otterhallegatan 2, SE-41118 Goteborg, SWEDEN * *****************************************************************************/package com.mindbright.util;public final class ArraySort { public static interface Comparable { public int compareTo(Comparable other); } public static void sort(Comparable[] arr) { sort(arr, 0, arr.length); } public static void sort(Comparable[] arr, int start, int end) { Comparable aux[] = (Comparable[])arr.clone(); mergeSort(aux, arr, start, end); } private static void mergeSort(Comparable[] src, Comparable[] dest, int low, int high) { int length = high - low; // Insertion sort on smallest arrays if(length < 7) { for(int i = low; i < high; i++) for(int j = i; j > low && dest[j - 1].compareTo(dest[j]) > 0; j--) swap(dest, j, j - 1); return; } // Recursively sort halves of dest into src int mid = (low + high) / 2; mergeSort(dest, src, low, mid); mergeSort(dest, src, mid, high); // If list is already sorted, just copy from src to dest. This is an // optimization that results in faster sorts for nearly ordered lists. if(src[mid - 1].compareTo(src[mid]) <= 0) { System.arraycopy(src, low, dest, low, length); return; } // Merge sorted halves (now in src) into dest for(int i = low, p = low, q = mid; i < high; i++) { if(q >= high || p < mid && src[p].compareTo(src[q]) <= 0) dest[i] = src[p++]; else dest[i] = src[q++]; } } private static void swap(Object list[], int a, int b) { Object tmp = list[a]; list[a] = list[b]; list[b] = tmp; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -