【数据结构】快速排序算法(Java实现)

212752_YqG9_3030978.png

package com.paixu;

class shuzu1 {
	int length;
	int r[] = new int[100];

	// 创建数组
	public void create(int a[]) {
		for (int i = 0; i <= length; i++) {
			r[i] = a[i];

		}

	}

	// 展示数组
	public void display() {
		System.out.println("这里是展示数组:");
		for (int i = 1; i <= length; i++) {
			System.out.print(r[i] + " ");

		}
		System.out.println();
		System.out.println();
	}
	
	public void swap(int low,int high){
		int temp;
		temp = r[low];
		r[low] = r[high];
		r[high] = temp;
		System.out.println("此时位置"+low+"和位置"+high+"交换");	
		display();
	}
	
	//快速排序
	public void Qsort(int low,int high){
		int pivot;
		
		if (low<high){
			pivot = Partition(low, high);
			System.out.println("此时pivot为:"+pivot);
			Qsort(low, pivot-1);
			Qsort(pivot+1,high);
		}
	}
	
	int Partition(int low,int high){
		int pivotkey = r[low];
		while (low<high){
			while(low<high&&r[high]>=pivotkey){
				high--;
			}
			swap(low,high);
			while (low<high&&r[low]<=pivotkey){
				low++;
			}
			swap(low,high);
		}
		System.out.println("-------------------");
		return low;
	}
	
}
public class kuaipai {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		shuzu1 sz = new shuzu1();
		sz.length = 10;

		int a[] = { 0, 5, 8, 9, 7, 22, 20, 16, 200, 65, 98 };
		sz.create(a);
		sz.display();
	    sz.Qsort(1, 10);
		sz.display();


	}

}

 

转载于:https://my.oschina.net/u/3030978/blog/1491798

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值