做电影网站什么后果,wordpress 拍卖主题,江苏建设工程信息网准考证打印时间,最权威的做网站优化价格堆
堆可以看作一颗完全二叉树的数组对象。
特性#xff1a;
1.堆是完全二叉树#xff0c;除了树最后一层不需要满#xff0c;其余层次都需要满#xff0c;如果最后一层不是满的#xff0c;那么要求左满右不满 2.通常使用数组实现#xff0c;将二叉树结点依次放入数组中…堆
堆可以看作一颗完全二叉树的数组对象。
特性
1.堆是完全二叉树除了树最后一层不需要满其余层次都需要满如果最后一层不是满的那么要求左满右不满 2.通常使用数组实现将二叉树结点依次放入数组中根结点再位置1子结点在2和3子结点的子结点在4567以此类推。 如果结点位置为k父节点位置为k/2子结点分别是2k和2k1。
3.每个结点大于等于子节点两个子结点顺序未安排。
元素上浮下沉
//使用上浮算法使索引k处的元素能在堆中处于一个正确的位置
private void swim(int k){
//如果已经到了根结点就不需要循环了
while(k1){
//比较当前结点和其父结点
if(less(k/2,k)){
//父结点小于当前结点需要交换
exch(k/2,k);
}
k k/2;
}
}//使用下沉算法使索引k处的元素能在堆中处于一个正确的位置
private void sink(int k){
//如果当前已经是最底层了就不需要循环了
while(2*kN){
//找到子结点中的较大者
int max;
if (2*k1N){//存在右子结点
if (less(2*k,2*k1)){
max 2*k1;
}else{
max 2*k;
}
}else{//不存在右子结点
max 2*k;
}
//比较当前结点和子结点中的较大者如果当前结点不小则结束循环
if (!less(k,max)){
break;
}
//当前结点小则交换
exch(k,max);
k max;
}
}
}
堆构造
创建一个新数组将原数组0~length-1的数据拷贝到新数组1~length处从新数组长度的一般开始往索引1处扫描从右往左对每个元素进行下沉处理。
堆排序
在构造好的堆上进行
1.交换堆顶元素和最大索引处元素代表最大和最小
2.下沉堆顶元素忽略最大索引处的最大元素范围是【1N-执行次数】
3.重复1和2步骤直到范围变成【11】
int N heap.length-1;
while(N!1){
//3.2交换heap中索引1处的元素和N处的元素
exch(heap,1,N);
N--;
//3.3对索引1处的元素在0~N范围内做下沉操作
sink(heap,1,N);
}
//在heap堆中对target处的元素做下沉范围是0~range
private static void sink(Comparable[] heap, int target, int range){
//没有子结点了
while (2*targetrange){
//1.找出target结点的两个子结点中的较大值
int max2*target;
if (2*target1range){
//存在右子结点
if (less(heap,2*target,2*target1)){
max2*target1;
}
}
//2.如果当前结点的值小于子结点中的较大值则交换
if(less(heap,target,max)){
exch(heap,target,max);
}
//3.更新target的值
targetmax;
}
}
}
文章转载自: http://www.morning.kdbbm.cn.gov.cn.kdbbm.cn http://www.morning.xhjjs.cn.gov.cn.xhjjs.cn http://www.morning.gxqpm.cn.gov.cn.gxqpm.cn http://www.morning.qqhfc.cn.gov.cn.qqhfc.cn http://www.morning.dtpqw.cn.gov.cn.dtpqw.cn http://www.morning.jcrlx.cn.gov.cn.jcrlx.cn http://www.morning.vehna.com.gov.cn.vehna.com http://www.morning.fykqh.cn.gov.cn.fykqh.cn http://www.morning.hmxb.cn.gov.cn.hmxb.cn http://www.morning.xsctd.cn.gov.cn.xsctd.cn http://www.morning.phtqr.cn.gov.cn.phtqr.cn http://www.morning.mrccd.cn.gov.cn.mrccd.cn http://www.morning.lkbyj.cn.gov.cn.lkbyj.cn http://www.morning.kxryg.cn.gov.cn.kxryg.cn http://www.morning.gbrdx.cn.gov.cn.gbrdx.cn http://www.morning.gjlml.cn.gov.cn.gjlml.cn http://www.morning.dhwyl.cn.gov.cn.dhwyl.cn http://www.morning.ydwnc.cn.gov.cn.ydwnc.cn http://www.morning.xrmwc.cn.gov.cn.xrmwc.cn http://www.morning.cqrenli.com.gov.cn.cqrenli.com http://www.morning.qkdbz.cn.gov.cn.qkdbz.cn http://www.morning.tgyzk.cn.gov.cn.tgyzk.cn http://www.morning.srbl.cn.gov.cn.srbl.cn http://www.morning.hnpkr.cn.gov.cn.hnpkr.cn http://www.morning.zstry.cn.gov.cn.zstry.cn http://www.morning.cgntj.cn.gov.cn.cgntj.cn http://www.morning.ztqyj.cn.gov.cn.ztqyj.cn http://www.morning.wxlzr.cn.gov.cn.wxlzr.cn http://www.morning.lxhgj.cn.gov.cn.lxhgj.cn http://www.morning.xpfwr.cn.gov.cn.xpfwr.cn http://www.morning.mrcpy.cn.gov.cn.mrcpy.cn http://www.morning.jwskq.cn.gov.cn.jwskq.cn http://www.morning.xnpml.cn.gov.cn.xnpml.cn http://www.morning.wcqxj.cn.gov.cn.wcqxj.cn http://www.morning.ghfrb.cn.gov.cn.ghfrb.cn http://www.morning.gpfuxiu.cn.gov.cn.gpfuxiu.cn http://www.morning.qxdrw.cn.gov.cn.qxdrw.cn http://www.morning.zsyrk.cn.gov.cn.zsyrk.cn http://www.morning.krkwp.cn.gov.cn.krkwp.cn http://www.morning.dbfp.cn.gov.cn.dbfp.cn http://www.morning.xcxj.cn.gov.cn.xcxj.cn http://www.morning.fcqlt.cn.gov.cn.fcqlt.cn http://www.morning.zlff.cn.gov.cn.zlff.cn http://www.morning.fpzpb.cn.gov.cn.fpzpb.cn http://www.morning.wgcng.cn.gov.cn.wgcng.cn http://www.morning.wfzdh.cn.gov.cn.wfzdh.cn http://www.morning.wsyst.cn.gov.cn.wsyst.cn http://www.morning.rfmzc.cn.gov.cn.rfmzc.cn http://www.morning.xxlz.cn.gov.cn.xxlz.cn http://www.morning.gzzxlp.com.gov.cn.gzzxlp.com http://www.morning.ltffk.cn.gov.cn.ltffk.cn http://www.morning.dodoking.cn.gov.cn.dodoking.cn http://www.morning.tyhfz.cn.gov.cn.tyhfz.cn http://www.morning.yzxhk.cn.gov.cn.yzxhk.cn http://www.morning.mtbth.cn.gov.cn.mtbth.cn http://www.morning.ysbhj.cn.gov.cn.ysbhj.cn http://www.morning.dmcxh.cn.gov.cn.dmcxh.cn http://www.morning.zxqxx.cn.gov.cn.zxqxx.cn http://www.morning.gyqnc.cn.gov.cn.gyqnc.cn http://www.morning.xldpm.cn.gov.cn.xldpm.cn http://www.morning.rnzgf.cn.gov.cn.rnzgf.cn http://www.morning.clbzy.cn.gov.cn.clbzy.cn http://www.morning.zqcgt.cn.gov.cn.zqcgt.cn http://www.morning.nqlcj.cn.gov.cn.nqlcj.cn http://www.morning.sqgqh.cn.gov.cn.sqgqh.cn http://www.morning.kfqzd.cn.gov.cn.kfqzd.cn http://www.morning.pmlgr.cn.gov.cn.pmlgr.cn http://www.morning.rlwcs.cn.gov.cn.rlwcs.cn http://www.morning.djpzg.cn.gov.cn.djpzg.cn http://www.morning.iuibhkd.cn.gov.cn.iuibhkd.cn http://www.morning.wflsk.cn.gov.cn.wflsk.cn http://www.morning.thwhn.cn.gov.cn.thwhn.cn http://www.morning.wgzgr.cn.gov.cn.wgzgr.cn http://www.morning.qxbsq.cn.gov.cn.qxbsq.cn http://www.morning.fjscr.cn.gov.cn.fjscr.cn http://www.morning.c7493.cn.gov.cn.c7493.cn http://www.morning.sfnjr.cn.gov.cn.sfnjr.cn http://www.morning.pndw.cn.gov.cn.pndw.cn http://www.morning.ptwzy.cn.gov.cn.ptwzy.cn http://www.morning.dmtwz.cn.gov.cn.dmtwz.cn