标签:int 复杂度 数据结构和算法 ring ima 左右 private 总结 理想
以前数据结构和算法课程上学的算法都忘记的差不多了,所以还是要整理下知识点复习一下,好记性不如烂笔头。
我会先一个一个的介绍这些算法以及实现,最后再总结一次。首先,先从快速排序开始。
快速排序是对冒泡排序的一种本质改进。它的基本思想是通过一趟扫描后,使得排序序列的长度能大幅度地减少。在冒泡排序中,一次扫描只能确保最大数值的数移到正确位置,而待排序序列的长度可能只减少1。快速排序通过一趟扫描,就能确保某个数(以它为基准点吧)的左边各数都比它小,右边各数都比它大。然后又用同样的方法处理它左右两边的数,直到基准点的左右只有一个元素为止。
快速排序是不稳定的。最理想情况算法时间复杂度O(nlog2n),最坏O(n2)
public class Sort{ public static void main(String[] args){ int[] arr = {4,3,6,1,5,2}; ksSort(arr,0,arr.length-1); System.out.println(Arrays.toString(arr)); } private static void ksSort(int[] a,int low,int high){ if(low<high){ int mid = getMid(a,low,high); ksSort(a,low,mid-1); ksSort(a,mid+1,high); } } private static int getMid(int[] a,int low,int high){ int base = a[low]; while(low!=high){ while(low<high&&a[high]>=base){ high--; } swap(a,low,high); while(low<high&&a[low]<=base){ low++; } swap(a,low,high); } return a[low]; } private static void swap(int[] a,int low,int high){ int temp = a[low]; a[low] = a[high]; a[high] = temp; } }
好了,看下结果。
标签:int 复杂度 数据结构和算法 ring ima 左右 private 总结 理想
原文地址:http://www.cnblogs.com/wuguanglin/p/7675629.html