(25)Go实现反向索引堆

普通堆(10)Go实现二叉堆-数组实现:https://www.jianshu.com/p/37bca5f2a6e9

为什么要有索引堆?
原因如下主要有以下两个:



1)如上图,对于一组数据来说,经过堆整理后,数据的大多数索引都发生了变化,之后如果还想改变数组内的值,会找不到对应的数据,除非去遍历数组,不过这样太消耗资源
2)如果这组数据中存储的是比较大的数据,如是1个10000字节长度的字符串,每次堆交换位置,也会消耗太大的资源。

解决这个问题的关键就是索引堆,如下图

解读:
1)indexex[]中存储的是data中数据的索引,每次在堆中堆数据进行对比,交换的不是data的数据,
而是data的索引,这样每次只交换索引,资源消耗小速度快;
2)reverse是indexes的反向索引,即查找表,每次要改变data[i]的值,可通过reverse[i]找到
对应indexes的索引
最小反向查找索引堆的实现
// 最小索引堆,从1开始
type minIndexHeap struct {
    Size    int
    Indexes []int
    Data    []int
    Reverse []int
}

func NewMinIndexHeap(capacity int) *minIndexHeap {
    return &minIndexHeap{
        Indexes: make([]int, capacity+1),
        Data:    make([]int, capacity+1),
        Reverse: make([]int, capacity+1),
    }
}

func parent(i int) int {
    if i == 1 {
        return 1
    }
    return i / 2
}

func leftChild(i int) int {
    return 2 * i
}

// 查看data[i]是否存在堆中
func (h *minIndexHeap) Contain(i int) bool {
    // 索引超出范围,或者data[i]不存在堆中
    if i < 1 || i >= len(h.Reverse) || h.Reverse[i] == 0 {
        return false
    }
    return true
}

func (h *minIndexHeap) GetSize() int {
    return h.Size
}

func (h *minIndexHeap) IsEmpty() bool {
    return h.Size == 0
}

func (h *minIndexHeap) GetMin() (int, error) {
    if h.IsEmpty() {
        return 0, errors.New(
            "failed to getMin,heap is empty")
    }
    return h.Data[h.Indexes[1]], nil
}

// 上浮
func (h *minIndexHeap) shiftUp(childI int) {
    parI := parent(childI)
    // 1 <= parI <= childI <= h.size
    for h.Data[h.Indexes[parI]] > h.Data[h.Indexes[childI]] {
        h.Indexes[parI], h.Indexes[childI] = h.Indexes[childI], h.Indexes[parI]
        h.Reverse[h.Indexes[parI]], h.Reverse[h.Indexes[childI]] = parI, childI
        childI = parI
        parI = parent(parI)
    }
}

// 下沉 左闭右闭
func (h *minIndexHeap) shiftDown(parI int) {
    for {
        var minI int
        leftI := leftChild(parI)
        switch {
        // 左索引超出size
        case leftI > h.Size:
            return
            // 左索引不超,右索引超出size,说明左索引是最后索引
        case leftI+1 > h.Size:
            if h.Data[h.Indexes[parI]] > h.Data[h.Indexes[leftI]] {
            h.Indexes[parI], h.Indexes[leftI] = h.Indexes[leftI], h.Indexes[parI]

            h.Reverse[h.Indexes[parI]], h.Reverse[h.Indexes[leftI]] = parI, leftI
            }
            return
            // 跟左右中小的做比较
        case h.Data[h.Indexes[leftI]] <= h.Data[h.Indexes[leftI+1]]:
            minI = leftI
        default: // h.data[h.index[leftI]] > h.data[h.index[leftI+1]]
            minI = leftI + 1
        }

        // 比左右子节点的值都小,返回
        if h.Data[h.Indexes[parI]] < h.Data[h.Indexes[minI]] {
            return
        }

        h.Indexes[parI], h.Indexes[minI] = h.Indexes[minI], h.Indexes[parI]
        h.Reverse[h.Indexes[parI]], h.Reverse[h.Indexes[minI]] = parI, minI
        parI = minI
    }
}

// 插入元素
func (h *minIndexHeap) InsertItem(item int) error {
    // 从索引1开始,capacity=10,则len(data)=11
    if h.Size >= len(h.Data) {
        fmt.Println("failed to insertItem,heap is full.")
        return errors.New("heap is full.")
    }

    h.Size++
    // ==0则说明之前这个位置没插入过元素
    if h.Indexes[h.Size] == 0 {
        h.Indexes[h.Size] = h.Size
    }

    h.Data[h.Indexes[h.Size]] = item
    h.Reverse[h.Indexes[h.Size]] = h.Size

    childI := h.Size
    h.shiftUp(childI)

    return nil
}

// 取出元素
func (h *minIndexHeap) ExtractMin() (int, error) {
    if h.IsEmpty() {
        return 0, errors.New(
            "failed to getMax,heap is empty")
    }
    retVal := h.Data[h.Indexes[1]]

    h.Data[h.Indexes[1]], h.Data[h.Indexes[h.Size]] =
        h.Data[h.Indexes[h.Size]], 0

        // index从1开始存数据,索引0表示不存在,被删除
    h.Reverse[h.Indexes[h.Size]] = 0

    h.Size--
    h.shiftDown(1)
    return retVal, nil
}

// 改变指定data[i]的值
func (h *minIndexHeap) Change(i, newItem int) error {
    if h.IsEmpty() {
        return errors.New(
            "failed to change,heap is empty")
    }

    // 索引超出范围,或者i对应的索引不存在
    if !h.Contain(i) {
        return errors.New(
            "failed to change ,index is illegal")
    }

    // 能到这步说明索引存在且合法
    if h.Data[i] > newItem {
        h.Data[i] = newItem
        h.shiftUp(h.Reverse[i])
    } else if h.Data[i] < newItem {
        h.Data[i] = newItem
        h.shiftDown(h.Reverse[i])
    }

    return nil
}

// 打印二叉堆
func (h *minIndexHeap) Print() {
    count := 1
    j := 2
    var k uint = 1
    i := 1
    for i <= h.Size {
        fmt.Printf("%d层: ", k)
        for count < j {
            fmt.Printf(" %v ", h.Data[h.Indexes[i]])
            count++
            i++
            if i > h.Size {
                break
            }
        }
        fmt.Println()
        count = 0
        j = 1 << k
        k++
    }
}
测试
func main() {
    a := indexminheap1.NewMinIndexHeap(10)

    for i := 0; i < 8; i++ {
        a.InsertItem(rand.Intn(50) + 10)
    }
    fmt.Println("初始值:")
    a.Print()
    fmt.Println("=========")

    for i := 0; i < 3; i++ {
        a.ExtractMin()
    }
    fmt.Println("取出3个值:")
    a.Print()
    fmt.Println("=========")

    for i := 0; i < 4; i++ {
        a.InsertItem(rand.Intn(50) + 51)

    }
    fmt.Println("添加4个值:")
    a.Print()
    fmt.Println(*a)
    fmt.Println("=========")

    err := a.Change(4, 9)
    if err != nil {
        fmt.Println(err)
        return
    }
    fmt.Println("索引4改为9:")
    a.Print()
    fmt.Println(*a)
    fmt.Println("=========")

    fmt.Println("索引2改为510:")
    err = a.Change(2, 510)
    if err != nil {
        fmt.Println(err)
        return
    }
    a.Print()
    fmt.Println(*a)
}
测试结果 //
初始值:
1层:  19 
2层:  41  28 
3层:  47  41  57  35 
4层:  50 
=========
取出3个值:
1层:  41 
2层:  41  50 
3层:  47  57 
=========
添加4个值:
1层:  41 
2层:  41  50 
3层:  47  57  57  51 
4层:  95  62 
{9 [0 1 5 6 2 7 3 4 8 9 0] [0 41 47 57 51 41 50 57 95 62 0] [0 1 4 6 7 2 3 5 8 9 0]}
=========
索引4改为9:
1层:  9 
2层:  41  41 
3层:  47  57  57  50 
4层:  95  62 
{9 [0 4 5 1 2 7 3 6 8 9 0] [0 41 47 57 9 41 50 57 95 62 0] [0 3 4 6 1 2 7 5 8 9 0]}
=========
索引2改为510:
1层:  9 
2层:  41  41 
3层:  62  57  57  50 
4层:  95  510 
{9 [0 4 5 1 9 7 3 6 8 2 0] [0 41 510 57 9 41 50 57 95 62 0] [0 3 9 6 1 2 7 5 8 4 0]}
总结:代码的难度在于维护好indexes,data,reverse这个3个表的关系。//
比如(1)先添加5个元素,取出2个元素,再添加3个元素,这种情况要处理好indexes表。
网上很多代码在(1)这种情况会有堆中数据不准确的bug。
我的思路是:都从索引1开始,0表示不存在,在取出操作中,reverse[i]=0表示该节点不存在,
indexes[i]中的值不变,在下次重新添加到这一步时,把值更新到data[indexes[i]]中,如果
indexes[i]=0,令indexes[i]=size,即当前data[i]的索引

有bug欢迎指出,转载请注明出处。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,125评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,293评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,054评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,077评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,096评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,062评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,988评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,817评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,266评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,486评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,646评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,375评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,974评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,621评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,642评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,538评论 2 352

推荐阅读更多精彩内容