排序算法
算法总结
冒泡算法
冒泡排序是一种简单的排序算法。它重复地走访过要排序的数列,一次比较两个元素,如果它们的顺序错误就把它们交换过来。走访数列的工作是重复地进行直到没有再需要交换,也就是说该数列已经排序完成。这个算法的名字由来是因为越小的元素会经由交换慢慢“浮”到数列的顶端。
public static int[] bubbleSort(int[] array) {
if (array.length == 0) {
return array;
}
for (int i = 0; i < array.length; i++) {
for (int j = 0; j < array.length - 1 - i; j++) {
if (array[j + 1] < array[j]) {
int temp = array[j + 1];
array[j + 1] = array[j];
array[j] = temp;
}
}
}
return array;
}
选择排序
表现最稳定的排序算法之一,因为无论什么数据进去都是O(n2)的时间复杂度,所以用到它的时候,数据规模越小越好。唯一的好处可能就是不占用额外的内存空间了吧。理论上讲,选择排序可能也是平时排序一般人想到的最多的排序方法了吧。
选择排序(Selection-sort)是一种简单直观的排序算法。它的工作原理:首先在未排序序列中找到最小(大)元素,存放到排序序列的起始位置,然后,再从剩余未排序元素中继续寻找最小(大)元素,然后放到已排序序列的末尾。以此类推,直到所有元素均排序完毕。
public static int[] selectSort(int[] array) {
if (array.length == 0) {
return array;
}
for (int i = 0; i < array.length; i++) {
int minIndex = i;
for (int j = i; j < array.length; j++) {
if (array[j] < array[minIndex]) {
minIndex = j;
}
}
if (i != minIndex) {
int temp = array[minIndex];
array[minIndex] = array[i];
array[i] = temp;
}
}
return array;
}
插入排序
插入排序(Insertion-Sort)的算法描述是一种简单直观的排序算法。它的工作原理是通过构建有序序列,对于未排序数据,在已排序序列中从后向前扫描,找到相应位置并插入。插入排序在实现上,通常采用in-place排序(即只需用到O(1)的额外空间的排序),因而在从后向前扫描过程中,需要反复把已排序元素逐步向后挪位,为最新元素提供插入空间。
public static int[] insertSort(int[] array) {
if (array.length == 0) {
return array;
}
int current;
for (int i = 0; i < array.length - 1; i++) {
current = array[i + 1];
int preIndex = i;
while (preIndex >= 0 && current < array[preIndex]) {
array[preIndex + 1] = array[preIndex];
preIndex--;
}
array[preIndex + 1] = current;
}
return array;
}
希尔排序
希尔排序是希尔(Donald Shell)于1959年提出的一种排序算法。希尔排序也是一种插入排序,它是简单插入排序经过改进之后的一个更高效的版本,也称为缩小增量排序,同时该算法是冲破O(n2)的第一批算法之一。它与插入排序的不同之处在于,它会优先比较距离较远的元素。希尔排序又叫缩小增量排序。
public static int[] shellSort(int[] array) {
int len = array.length;
int temp, gap = len / 2;
while (gap > 0) {
for (int i = gap; i < len; i++) {
temp = array[i];
int preIndex = i - gap;
while (preIndex >= 0 && array[preIndex] > temp) {
array[preIndex + gap] = array[preIndex];
preIndex -= gap;
}
array[preIndex + gap] = temp;
}
gap /= 2;
}
return array;
}
归并排序
和选择排序一样,归并排序的性能不受输入数据的影响,但表现比选择排序好的多,因为始终都是O(nlogn)的时间复杂度。代价是需要额外的内存空间。
归并排序是建立在归并操作上的一种有效的排序算法。该算法是采用分治法(Divide and Conquer)的一个非常典型的应用。归并排序是一种稳定的排序方法。将已有序的子序列合并,得到完全有序的序列;即先使每个子序列有序,再使子序列段间有序。若将两个有序表合并成一个有序表,称为2-路归并。
public static int[] mergeSort(int[] array) {
if (array.length < 2) {
return array;
}
int mid = array.length / 2;
int[] left = Arrays.copyOfRange(array, 0, mid);
int[] right = Arrays.copyOfRange(array, mid, array.length);
return merge(mergeSort(left), mergeSort(right));
}
private static int[] merge(int[] left, int[] right) {
int[] result = new int[left.length + right.length];
for (int index = 0, i = 0, j = 0; index < result.length; index++) {
if (i >= left.length) {
result[index] = right[j++];
} else if (j >= right.length) {
result[index] = left[i++];
} else if (left[i] > right[j]) {
result[index] = right[j++];
} else {
result[index] = left[i++];
}
}
return result;
}
快速排序
快速排序的基本思想:通过一趟排序将待排记录分隔成独立的两部分,其中一部分记录的关键字均比另一部分的关键字小,则可分别对这两部分记录继续进行排序,以达到整个序列有序。
private static void quickSort(int[] arr, int leftIndex, int rightIndex) {
if (rightIndex <= leftIndex) {
return;
}
int left = leftIndex;
int right = rightIndex;
int temp = arr[left];
while (left < right) {
while (right > left && arr[right] >= temp) {
right--;
}
arr[left] = arr[right];
while (left < right && arr[left] <= temp) {
left++;
}
arr[right] = arr[left];
}
arr[right] = temp;
quickSort(arr, leftIndex, left - 1);
quickSort(arr, right + 1, rightIndex);
}
堆排序
堆排序(Heapsort)是指利用堆这种数据结构所设计的一种排序算法。堆积是一个近似完全二叉树的结构,并同时满足堆积的性质:即子结点的键值或索引总是小于(或者大于)它的父节点。
public void heapSort(int[] list) {
// 构造初始堆,从第一个非叶子节点开始调整,左右孩子节点中较大的交换到父节点中,堆顶是最大的元素
for (int i = (list.length) / 2 - 1; i >= 0; i--) {
heapAdjust(list, list.length, i);
}
// 排序,将最大的结点放在堆尾,然后从根结点重新调整
for (int i = list.length - 1; i >= 1; i--) {
int temp = list[0];
list[0] = list[i];
list[i] = temp;
heapAdjust(list, i, 0);
}
}
/**
* @param list list
* @param len 调整范围
* @param i 父节点
*/
private void heapAdjust(int[] list, int len, int i) {
int k = i, temp = list[i], index = 2 * k + 1;
while (index < len) {
if (index + 1 < len) {
if (list[index] < list[index + 1]) {
index = index + 1;
}
}
if (list[index] > temp) {
list[k] = list[index];
k = index;
index = 2 * k + 1;
} else {
break;
}
}
list[k] = temp;
}
计数排序
计数排序的核心在于将输入的数据值转化为键存储在额外开辟的数组空间中。 作为一种线性时间复杂度的排序,计数排序要求输入的数据必须是有确定范围的整数。
计数排序(Counting sort)是一种稳定的排序算法。计数排序使用一个额外的数组C,其中第i个元素是待排序数组A中值等于i的元素的个数。然后根据数组C来将A中的元素排到正确的位置。它只能对整数进行排序。
public static int[] countSort(int[] array) {
if (array.length == 0) {
return array;
}
int bias, min = array[0], max = array[0];
for (int i = 1; i < array.length; i++) {
if (array[i] > max) {
max = array[i];
}
if (array[i] < min) {
min = array[i];
}
}
bias = -min;
int[] bucket = new int[max - min + 1];
Arrays.fill(bucket, 0);
for (int i = 0; i < array.length; i++) {
bucket[array[i] + bias]++;
}
int index = 0, i = 0;
while (index < array.length) {
if (bucket[i] != 0) {
array[index] = i - bias;
bucket[i]--;
index++;
} else {
i++;
}
}
return array;
}
桶排序
桶排序是计数排序的升级版。它利用了函数的映射关系,高效与否的关键就在于这个映射函数的确定。
桶排序 (Bucket sort)的工作的原理:假设输入数据服从均匀分布,将数据分到有限数量的桶里,每个桶再分别排序。
public static ArrayList<Integer> bucketSort(ArrayList<Integer> arrayList, int bucketSize) {
if (arrayList == null || arrayList.size() < 2) {
return arrayList;
}
int max = arrayList.get(0), min = arrayList.get(0);
for (int i = 0; i < arrayList.size(); i++) {
if (arrayList.get(i) > max) {
max = arrayList.get(i);
}
if (arrayList.get(i) < min) {
min = arrayList.get(i);
}
}
int bucketCount = (max - min) / bucketSize + 1;
ArrayList<ArrayList<Integer>> bucketArr = new ArrayList<>(bucketCount);
ArrayList<Integer> resultArr = new ArrayList<>();
for (int i = 0; i < bucketCount; i++) {
bucketArr.add(new ArrayList<>());
}
for (int i = 0; i < arrayList.size(); i++) {
bucketArr.get((arrayList.get(i) - min) / bucketSize).add(arrayList.get(i));
}
for (int i = 0; i < bucketCount; i++) {
if (bucketSize == 1) {
// 如果待排序数组中有重复数字时
for (int j = 0; j < bucketArr.get(i).size(); j++) {
resultArr.add(bucketArr.get(i).get(j));
}
} else {
if (bucketCount == 1) {
bucketSize--;
}
ArrayList<Integer> temp = bucketSort(bucketArr.get(i), bucketSize);
for (int j = 0; j < temp.size(); j++) {
resultArr.add(temp.get(j));
}
}
}
return resultArr;
}
基数排序
基数排序也是非比较的排序算法,对每一位进行排序,从最低位开始排序,复杂度为O(kn),为数组长度,k为数组中的数的最大的位数。
基数排序是按照低位先排序,然后收集;再按照高位排序,然后再收集;依次类推,直到最高位。有时候有些属性是有优先级顺序的,先按低优先级排序,再按高优先级排序。最后的次序就是高优先级高的在前,高优先级相同的低优先级高的在前。基数排序基于分别排序,分别收集,所以是稳定的。
/**
* radix表示基数(进制),digits表示最大数值位数
*/
public static int[] radixSort(int[] data, int radix, int digits) {
LinkedList<LinkedList> queue = new LinkedList<>();
for (int r = 0; r < radix; r++) {
LinkedList<Integer> queue1 = new LinkedList<>();
//offer用于queue中(LinkedList同时实现了List和queue接口),add用于List中
queue.offer(queue1);
}
//最大元素的位数,进行digits次分配和收集
for (int i = 0; i < digits; i++) {
//分配数组元素
for (int j = 0; j < data.length; j++) {
//得到digits的第i+1位
int r = (int) (data[j] % Math.pow(radix, i + 1) / Math.pow(radix, i));
LinkedList<Integer> queue2 = queue.get(r);
queue2.offer(data[j]);
queue.set(r, queue2);
}
//将收集队列元素
int count = 0;
for (int k = 0; k < radix; k++) {
while (queue.get(k).size() > 0) {
data[count++] = (Integer) queue.get(k).poll();
}
}
}
return data;
}
基数排序 vs 计数排序 vs 桶排序
这三种排序算法都利用了桶的概念,但对桶的使用方法上有明显差异:
- 基数排序:根据键值的每位数字来分配桶
- 计数排序:每个桶只存储单一键值
- 桶排序:每个桶存储一定范围的数值
树
遍历
```java /**- 递归先序遍历
- @param biTree 二叉树
*/
public static void preOrderRe(TreeNode biTree) {
System.out.println(biTree.value);
if (biTree.left != null) {
} if (biTree.right != null) {preOrderRe(biTree.left);
} }preOrderRe(biTree.right);
/**
- 非递归先序遍历
*/
public static void preOrder(TreeNode biTree) {
Stack
stack = new Stack<>(); while (biTree != null || !stack.isEmpty()) {
} }while (biTree != null) {
System.out.println(biTree.value);
stack.push(biTree);
biTree = biTree.left;
}
if (!stack.isEmpty()) {
biTree = stack.pop();
biTree = biTree.right;
}
/**
- 非递归中序遍历
*/
public static void inOrder(TreeNode biTree) {
Stack
stack = new Stack<>(); while (biTree != null || !stack.isEmpty()) {
} }while (biTree != null) {
stack.push(biTree);
biTree = biTree.left;
}
if (!stack.isEmpty()) {
biTree = stack.pop();
System.out.println(biTree.value);
biTree = biTree.right;
}
/**
- 后序非递归遍历
*/
public static void postOrder(TreeNode biTree) {
int left = 1;
int right = 2;
Stack
stack = new Stack<>(); // 用来判断子节点返回父节点时处于左节点还是右节点 Stack stack2 = new Stack<>(); while (biTree != null || !stack.isEmpty()) {
} }while (biTree != null) {
//将节点压入栈1,并在栈2将节点标记为左节点
stack.push(biTree);
stack2.push(left);
biTree = biTree.left;
}
while (!stack.isEmpty() && stack2.peek() == right) {
//如果是从右子节点返回父节点,则任务完成,将两个栈的栈顶弹出
stack2.pop();
System.out.println(stack.pop().value);
}
if (!stack.isEmpty() && stack2.peek() == left) {
stack2.pop();
stack2.push(right);
biTree = stack.peek().right;
}
/**
- 层次遍历
- 和广度优先遍历一样,都需要使用队列。首先将头结点放入队列,接下来每次从队列的头部取出一个结点,
- 遍历这个结点之后到达的结点,直到队列中的结点全部被遍历为止。
*/
private static List
- > levelOrder(TreeNode biTree) {
if (biTree == null) {
return result;
int count = queue.size();
List<Integer> list = new ArrayList<>();
while (count > 0) {
TreeNode temp = queue.peek();
// 弹出
queue.poll();
assert temp != null;
list.add(temp.value);
if (temp.left != null) {
queue.add(temp.left);
}
if (temp.right != null) {
queue.add(temp.right);
}
count--;
}
result.add(list);
<a name="fUDqk"></a>
## 进制转换
<a name="Us1X5"></a>
### 十六进制转十进制
```java
public int getTen(String input) {
char[] chars = input.toCharArray();
int j=0;
int sum = 0;
List<Character> tens =Arrays.asList('A', 'B', 'C', 'D', 'E', 'F');
for (int i = chars.length - 1; i >= 0; i--) {
int weight = 1;
for (int z = 0; z < j; z++) {
weight *= 16;
}
int base = 0;
if (tens.contains(chars[i])) {
base = chars[i] - 'A' + 10;
} else {
base = chars[i] - '0';
}
sum += base * weight;
j++;
}
return sum;
}
public String getSixteen(Integer ten) {
StringBuffer s = new StringBuffer();
String a;
char[] b = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
while (ten != 0) {
s = s.append(b[ten % 16]);
ten = ten / 16;
}
a = s.reverse().toString();
return a;
}
public String getTwo(Integer ten) {
StringBuffer s = new StringBuffer();
while (ten != 0) {
s = s.append(ten % 2);
ten = ten / 2;
}
return s.reverse().toString();
}
public Integer getTenFromTwo(String two) {
char[] chars = two.toCharArray();
int sum = 0;
int j = 0;
for (int i = chars.length - 1; i >= 0; i--) {
int weight = 1;
for (int z = 0; z < j; z++) {
weight *= 2;
}
sum += (chars[i] - '0') * weight;
j++;
}
return sum;
}
} Queuequeue = new LinkedList<>(); queue.add(biTree); while (!queue.isEmpty()) {
} return result; }十进制转十六进制
十进制转二进制
二进制转十进制