Heap Sort

Heap(An array visualized as a complete binary tree):

Heap Operations:

Insert,                         O(log(n))
  Add it to the end of the tree and bubble it up.

Find Max(return the element with maximum key),   O(1)
Extract Max(find max and remove it from heap),    O(log(n))
  Replace the root with the last entry in the tree.
Increase Key Value,                   O(log(n))

Tree_Heapify,                       O(nlog(n))
  Bad: Inserting each element, one at a time, into an empty heap

Tree_Heapify,                     O(n)
  Good: Bottom-up

  Starting from the last level of non-leaf nodes ( for i=n/2...1 )(Walk backward from the last internal node to the root), and heapify the node.
  Assuming both sub-trees are heaps already, heapifying the root node takes O(log(n)) time given n children for the tree. So to heapify the whole tree, it takes:
  1*n/4 + 2*n/8 + 3*n/16 + ... + log(n)*1
=n/4*(1+2/2 + 3/2^2 + 4/2^3 + ... + (k+1)/2^k)
=O(n)

parent = child/2
child = parent * 2, parent * 2 +1

Leaves in the array, A[n/2+1, ..., n]

 

Heap Sort:

bad for linked list

public static void main(String[] args){Random r = new Random();        int[] a = new int[]{r.nextInt(100), r.nextInt(100), r.nextInt(100),r.nextInt(100),r.nextInt(100),r.nextInt(100),r.nextInt(100),r.nextInt(100),r.nextInt(100),r.nextInt(100),r.nextInt(100)};        System.out.println(Arrays.toString(a));int[] aCopy1 = Arrays.copyOf(a, a.length);heapSort(aCopy1);System.out.println(Arrays.toString(aCopy1));            }private static void heapSort(int[] a){    //Bottom-up heapify.
        maxHeapify(a);int i = a.length - 1;while(i>0){//swap the root(the largest value) to the end of the arrayint temp = a[i];a[i] = a[0];a[0] = temp;--i;sinkMinDown(a, 0, i);}}private static void maxHeapify(int[] a){//find the last internal node in a 0-based arrayint iStart = (a.length-2)/2;while(iStart>=0){sinkMinDown(a, iStart, a.length-1);--iStart;}        }// [root, iEnd]private static void sinkMinDown(int[] a, int root, int iEnd){//left child 2i+1 for 0-based array//right child 2i+2 for 0-based arraywhile(root*2+1<=iEnd){int max = root;int leftChild = root*2+1;if(a[max]<a[leftChild])max = leftChild;int rightChild = leftChild+1;if(rightChild<=iEnd && a[max]<a[rightChild])max = rightChild;if(max == root)return; // a valid heapint temp = a[root];a[root] = a[max];a[max] = temp;root = max;}}

 

转载于:https://www.cnblogs.com/neweracoding/p/4202749.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/432084.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

UML类图与类间六种关系表示

1.类与类图 类封装了数据和行为,是面向对象的重要组成部分,它是具有相同属性,操作,关系的对象集合的总称. 类图是使用频率最高的UML图之一. 类图用于描述系统中所包含的类以及它们之间的相互关系,帮助开发人员理解系统,它是系统分析和设计阶段的重要产物,也是系统编码和测试…

C# 延迟初始化

一个对象的延迟初始化意味着该对象的创建将会延迟至第一次使用该对象时。&#xff08;在本主题中&#xff0c;术语“延迟初始化”和“延迟实例化”是同义词。&#xff09;延迟初始化主要用于提高性能&#xff0c;避免浪费计算&#xff0c;并减少程序内存要求。 以下是最常见的方…

FindWindowEx 遍历所有窗口

FindWindowEx 唯一麻烦是第2个参数的指定 . Explore 下窗口是Z序的 , 实际上就是根据 第一个参数 和 第2个参数 来找 第2个参数后的一个窗口: HWND child 0; child FindWindowEx ( NULL , child ,NULL,NULL); 这样 , child 就是一个Explore , 然后 , 通过循环能够找到…

jQuery介绍 DOM对象和jQuery对象的转换与区别

jQuery Hello World程序 <script type“text/javascript” src“xxx//jquery-x.y.z.js">引入jQuery.存在两个版本,jquery-x.y.z.min.js是精简压缩版,不带min的是开发版,代码中的注释和缩进等都被保留了.注意路径中的”/"需要转义,即用”//“.$()符号将DOM对象转…

PlacementBrowser源码分析

PlacementBrowser的源码在 Editor/PlacementMode下面 一、Placement分类的创建 1. Placement分类被存贮在 FPlacementModeModule 的成员变量 Categories里面。 2. 在 FPlacementModeModule::StartupModule() 创建出所有的Placement分类 3. 每个大类由RegisterPlacementCat…

swfit-学习笔记(数组的使用)

Swift数组的使用&#xff0c;参考&#xff1a;《The Swift Programming Language》中文版 // Copyright (c) 2015年 Zsmile. All rights reserved. //import UIKitclass ViewController: UIViewController {override func viewDidLoad() {super.viewDidLoad()//数组//创建空数…

menu源码分析

1. 菜单根据功能不同被划分了不同的section&#xff0c;不同的section的源码被分布在不同的地方 例如&#xff0c;主菜单的源码在Editor/Mainframe&#xff0c;datavaildation菜单的源码在Plugins\Editor\DataValidation下 2. 以主菜单为例&#xff0c;菜单以如下方法构建 首先…

Oracle Job相关

Oracle JOB的建立&#xff0c;定时执行任务 begin sys.dbms_job.submit(job > :job, what > proc_test;, next_date > trunc(sysdate)11/24, interva…

to_string

to_string 会把浮点数四舍五入

ueditor使用-图片上传正常,图片显示异常404

做个小项目&#xff0c;用到了ueditor&#xff0c;其中需要在ueditor中上传图片。 问题症状&#xff1a; 点击上传图片的按钮后选择图片&#xff0c;上传到了目的文件夹&#xff0c;但是显示不了&#xff0c;f12查看也是404.后来发觉显示图片时路径不对。 解决方案&#xff1a;…

Struts2从一个action转到另一个action的两种方法

在Struts2中&#xff0c;Action处理完用户请求后&#xff0c;将会返回一个字符串对象&#xff0c;这个字符串对象就是一个逻辑视图名。Struts 2通过配置逻辑视图名和物理视图之间的映射关系&#xff0c;一旦系统收到Action返回的某个逻辑视图名&#xff0c;系统就会把相应的物理…

根据select不同的选项实现相应input框添加项的显示

实现效果&#xff1a; 1.单击包时&#xff0c;显示包时的添加项 2.单击包里程&#xff0c;显示包里程的添加项 二 代码实现&#xff1a; 给select添加change事件 获取当前select的value 根据value判断对象显示其添加项框 <script> $(document).ready(function() {$(#typ…

内联汇编用法

在 Linux 代码中&#xff0c;经常可以看到在 C 代码中&#xff0c;嵌入部分汇编代码&#xff0c;这些代码要么是与硬件体系相关的&#xff0c;要么是对性能有关键影响的。 在很久以前&#xff0c;我特别惧怕内嵌汇编代码&#xff0c;直到后来把汇编部分的短板补上之后&#xf…

素数倒数的级数发散性的一个证明

问题 设$\mathbb P$为全体素数的集合,证明级数$$\sum_{p\in\mathbb P}\frac{1}{p}$$ 发散. 证明 做这个问题前&#xff0c;必须知道一个常识:全体素数集$\mathbb P$是无限的.所以题中才能作为级数. 如果结论不成立,则存在$k\in\mathbb N$使得$$\sum_{nk1}^{\infty}\frac{…

BZOJ2286 : [Sdoi2011]消耗战

对于每次询问&#xff0c;构造出虚树&#xff0c;相邻两点边权为该两点路径上边权的最小值 f[i]表示以i为根的子树与1不连通的最小代价,vip[i]表示i是不是关键点 f[i]sum(vip[j]?w[j]:min(f[j],w[j])) #include<cstdio> #include<algorithm> #define N 250010 #de…

epoll怎么实现的

epoll 可以说是编写高性能服务端程序必不可少的技术&#xff0c;在介绍 epoll 之前&#xff0c;我们先来了解一下 多路复用I/O 吧。 多路复用I/O 多路复用I/O&#xff1a;是指内核负责监听多个 I/O 流&#xff0c;当任何一个 I/O 流处于就绪状态&#xff08;可读或可写&#…

xxx

ota的升级及下载转载于:https://www.cnblogs.com/bigben0123/p/4221520.html

C#中yield return用法

转载&#xff1a;http://www.jb51.net/article/54810.htm http://www.cnblogs.com/HunterWei/archive/2012/06/13/csharpyieldreturn.html http://www.cnblogs.com/nankezhishi/archive/2009/03/20/1418086.html http://kb.cnblogs.com/page/42580/ 简单地说&#xff0c;当希望…

SICP~计算机程序的构造和解释~ 1.12 c++实现

题目&#xff1a; 采用递归计算过程计算出帕斯卡三角形的各个元素。 row:0 11 1 12 1 2 13 1 3 3 14 1 4 6 4 15 . . . . . .col: 0 1 2 3 4 //c //递归 #include<iostream> using namespace std;int pascaler(int row ,int col){ int value;…

模板参数自动推导

class Dummy { public:template<typename PA, typename PB>void test(PA res, PB b){} }; int main() {Dummy dummy;dummy.test(1, 2); //不指定类型&#xff0c;根据参数自动推导dummy.test<int, int>(1, 2); //指定类型 } class Dummy { p…