算法-快排
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了算法-快排相关的知识,希望对你有一定的参考价值。
package com.java.algorithm.test; import org.junit.Test; import java.util.Arrays; public class QuickSortTest { @Test public void testQuickSort() { int[] A = new int[]{2, 8, 7, 1, 3, 5, 6, 4}; this.quickSort(A, 0, A.length - 1); System.out.println(Arrays.toString(A)); } public int partition(int[] A, int p, int r) { int x = A[r]; int i = p - 1; for (int j = p; j <= r - 1; j++) { if (A[j] <= x) { i = i + 1; this.exchange(A, i, j); } } this.exchange(A, i + 1, r); return i + 1; } public void quickSort(int[] A, int p, int r) { if (p < r) { int q = this.partition(A, p, r); this.quickSort(A, p, q - 1); this.quickSort(A, q + 1, r); } } public void exchange(int[] A, int i, int j) { int temp = A[i]; A[i] = A[j]; A[j] = temp; } }
本文出自 “宁静致远” 博客,请务必保留此出处http://woodpecker.blog.51cto.com/2349932/1954115
以上是关于算法-快排的主要内容,如果未能解决你的问题,请参考以下文章
排序算法:堆排,快排的实现(快排的三种实现方法以及快排的优化)