堆排序-java实现

目录:

https://blog.csdn.net/stoneWang_L/article/details/89228145

1)冒泡排序

https://blog.csdn.net/stoneWang_L/article/details/89220461

2)插入排序

https://blog.csdn.net/stoneWang_L/article/details/89221348

3)选择排序

https://blog.csdn.net/stoneWang_L/article/details/89220638

4)快速排序

https://blog.csdn.net/stoneWang_L/article/details/89221592

6)归并排序

https://blog.csdn.net/stoneWang_L/article/details/89210938

7)希尔排序

https://blog.csdn.net/stoneWang_L/article/details/89217137

堆排序

堆的概念:

每个结点的值都大于或等于其左右孩子结点的值的完全二叉树,称为大顶堆;

每个结点的值都小于或等于其左右孩子结点的值的完全二叉树,称为小顶堆;

 

思路:

利用堆进行排序,将待排的序列构成个大顶堆,最大值就是根节点;将根节点移走,(将其和堆末尾元素交换,此时末尾  元素就是最大值),接着将剩余的n-1个序列重新构成一个堆,继续进行。

Code:

package DataStr;

import java.util.Arrays;

/**
 * 数组下标0的元素也参与排序
 * @author stoneWang_L
 *
 */
public class HeapSort3 {
	public static void main(String[] args) {
		int[] arr = {312,126,272,226,28,165,123,8,12};
//		int[] arr = SortTestHelper.getRandomArray(20, 0, 2);
		System.out.println("堆排序前:"+Arrays.toString(arr));
		//堆排序
		heapSort(arr, arr.length);
		System.out.println("堆排序后:"+Arrays.toString(arr));
	}
	
	private static void heapSort(int[] arr, int count) {
		//完成构建大顶堆
		for(int i=(count-2)/2; i>=0; i--)
			shiftDown(arr, count, i);
		System.out.println("构建完成的大顶堆:"+Arrays.toString(arr));
		
		//将大顶堆头结点(最大数)与最后一个元素交换位置,然后除去最后这个最大的元素,再shiftDown操作维护该(除去最后一个元素的数组)堆为大顶堆。循环直到升序排序完成
		for(int j=count-1; j>0; j--) {
			swap(arr, 0, j);
			shiftDown(arr, j, 0);
		}
	}
	
	/**
	 * 
	 * @param arr 数组
	 * @param count	元素个数
	 * @param currentRoot 当前根节点的下标
	 */
	private static void shiftDown(int[] arr, int count ,int currentRoot) {
		while(2*currentRoot+1 < count) {
			int max = 2*currentRoot+1; //初始赋值left孩子
			if(max+1 < count && arr[max+1] > arr[max])
				max += 1;
			if(arr[currentRoot] >= arr[max])
				break;
			swap(arr, currentRoot, max);
			currentRoot = max;
		}
	}
	
	//交换
	public static void swap(int[] arr, int n, int m) {
		int temp = arr[n];
		arr[n] = arr[m];
		arr[m] = temp;
	}
}

结果:

 

 

 

 

 

 

 

 

 

 

 

 

  • 4
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 8
    评论
堆排序是一种常见的排序算法,具有稳定性高、效率高等优点。下面介绍一下使用Java实现的小根堆排序。 首先,我们需要定义一个小根堆类,用于存储待排序的数据。该类需要包含以下几个方法: 1. `Heap()`:构造函数,用于初始化小根堆。 2. `insert(int val)`:插入操作,将一个新的元素插入到小根堆中。 3. `deleteMin()`:删除操作,删除小根堆中的最小元素,并返回该元素的值。 4. `size()`:获取小根堆中元素的个数。 5. `isEmpty()`:判断小根堆是否为空。 接下来,我们就可以使用小根堆对待排序的数据进行排序了。具体的步骤如下: 1. 将待排序的数据存入小根堆中。 2. 依次从小根堆中删除最小元素,并将其存入数组中。 3. 最后,将数组反转,即可得到排序后的结果。 下面是具体的Java代码实现: ```java public class HeapSort { public static void heapSort(int[] arr) { Heap heap = new Heap(arr.length); for (int i = 0; i < arr.length; i++) { heap.insert(arr[i]); } for (int i = 0; i < arr.length; i++) { arr[i] = heap.deleteMin(); } // 反转数组 reverse(arr); } // 反转数组 private static void reverse(int[] arr) { int left = 0; int right = arr.length - 1; while (left < right) { int temp = arr[left]; arr[left] = arr[right]; arr[right] = temp; left++; right--; } } // 小根堆类 static class Heap { private int[] heap; private int size; public Heap(int capacity) { heap = new int[capacity + 1]; size = 0; } public void insert(int val) { if (size == heap.length - 1) { throw new RuntimeException("Heap is full"); } int i = ++size; while (i != 1 && val < heap[i / 2]) { heap[i] = heap[i / 2]; i /= 2; } heap[i] = val; } public int deleteMin() { if (isEmpty()) { throw new RuntimeException("Heap is empty"); } int min = heap[1]; int last = heap[size--]; int i = 1; int child = 2; while (child <= size) { if (child < size && heap[child] > heap[child + 1]) { child++; } if (last > heap[child]) { heap[i] = heap[child]; i = child; child *= 2; } else { break; } } heap[i] = last; return min; } public int size() { return size; } public boolean isEmpty() { return size == 0; } } } ``` 使用该算法对数组进行排序: ```java int[] arr = {3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5}; HeapSort.heapSort(arr); System.out.println(Arrays.toString(arr)); // 输出 [1, 1, 2, 3, 3, 4, 5, 5, 5, 6, 9] ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值