基础算法——快速排序

基础算法之快速排序

今天在leetcode时发现自己连快速排序都不会写了,所以开了这个版块,将自己所遇到的基础算法都放到这里。

package QuickSort;

import java.util.Random;

public class QuickSort {
	
	static public void swap(int a, int b)
	{
		int temp = 0;
		temp = a;
		a = b;
		b = temp;
	}
	static public void quickSort(int start , int end , int[] num)
	{
		if(start >= end)
		{
			return;
		}
		
		int key = num[start];
		int from = start;
		int to = end;
		
		while(from < to)
		{
			while(from < to && key <= num[to])
			{
				--to;
			}
			
			num[from] = num[to];
			
			while(from < to && key >= num[from])
			{
				++from;
			}
			
			num[to] = num[from];
		}
		
		num[from] = key;
		
		quickSort(start, from - 1, num);
		quickSort(to + 1, end, num);
	}
	
	static public void main(String[] args)
	{
		System.out.println("Start");
		
		//生成排序数据
		Random seed = new Random();
		int numSize = 10;
		int[] number = new int[numSize];
		for(int loc = 0; loc <= numSize - 1; ++loc)
		{
			number[loc] = seed.nextInt(numSize) + 1;
		}
		
		quickSort(0, numSize - 1, number);
		
		for(int temp : number)
		{
			System.out.println(temp);
		}
		
		System.out.println("End");
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值