排序算法-面试题

19 篇文章 0 订阅
1 篇文章 0 订阅

1、算法汇总

各排序算法复杂度对比

2、算法简介

2.1、冒泡排序

// 时间复杂度 o(n2)
public static void BubbleSort(int[] nums) {
	int count = nums.length;
	for (int i = 0; i < count - 1; i++) {
		for (int j = i + 1; j < count; j ++) {
			if (nums[i] >nums[j]) {
				int temp = nums[i];
				nums[i] = nums[j];
				nums[j] = temp;
			}
		}
	}
}

2.2、选择排序

public static void selectionSort(int[] nums) {
	int count = nums.length;
	int minElement;
	for (int i = 0; i < count - 1; i ++) {
		minElement = i;	//设置最小值
		for (int j = i + 1; j < count; j ++) {
			if (nums[j] < nums[minElement]) {	// 选取i元素及其之后的最小值
				minElement = j;		// 设置最小值
			}
		}
		int temp = nums[i];
		nums[i] = nums[minElement];
		nums[minElement] = nums[i];
	}
}

2.3、插入排序

public static void insertionSort(int[] nums) {
	int count = nums.length;
	for (int i = 1; i < count; i ++) {
		int preIndex = i - 1;
		int current = nums[i];
		while (preIndex >= 0 && nums[preIndex] > current) {
			nums[i] = nums[preIndex];
			nums[preIndex] = current;
		}
	}
}

4、快速排序

public staic void quickSortMain(int[] nums, int start, int end) {
	int standard = quickSort(nums, start, end);
	quickSort(nums, start, standard);
	quickSort(nums, standard + 1, end);
}

public static int quickSort(int[] nums, int start, int end) {
	int standard = nums[start];
	if (start < end) {
		while (start < end) {
			while (start < end && nums[end] <= standard) {
				end --;
			}
			nums[start] = nums[end];
			while (start < end && nums[start] >= standard) {
				start ++;
			}
			nums[end] = nums[start];
			}
		nums[start] = standard;
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值