java 快速排序

package com.algorithms;

/**
 * 
 *   pseudocode
 * 
 *   patition(A, p, q)
 *   	x <- A[p]
 *   	i <- p;
 *   	for j <- p + 1 to q
 *   		do if A[j] <= x
 *   			then i <- i + 1
 *   				exchange A[i] <- A[j]
 *		exchange A[p] <- A[i]
 *		return i
 * 
 *	  quickSort(A, p, q)
 *		if p < q
 *			then r <- patition(A, p, q);
 *				 quickSort(A, p, r-1)
 *				 quickSort(A, r+1,q)
 */
public class Qucksort {
	public static void main(String[] args) {
		int[] a = { 6, 10, 13, 5, 8, 3, 2, 11 };
		display(a);
		System.out.println("");
		quickSort(a, 0, a.length - 1);
		display(a);
	}

	static void quickSort(int[] a, int p, int q) {
		if (p < q) {
			int r = patition(a, p, q);
			quickSort(a, p, r - 1);
			quickSort(a, r + 1, q);
		}
	}

	static int patition(int a[], int p, int q) {
		int x = a[p];
		int i = p;

		for (int j = p + 1; j <= q; j++) {
			if (a[j] <= x) {
				i++;
				swap(a, i, j);
			}
		}
		swap(a, p, i);
		return i;
	}

	static void swap(int[] a, int i, int j) {
		int temp = a[i];
		a[i] = a[j];
		a[j] = temp;
	}

	static void display(int[] a) {
		for (int i = 0; i < a.length; i++) {
			System.out.print(a[i] + " ");
		}
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值