用go实现的一个堆得数据结构

Posted 秦至臻

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用go实现的一个堆得数据结构相关的知识,希望对你有一定的参考价值。

用golang实现的堆,主要提供了两个方法,push和pop及堆的大小,代码如下:

package main

import (
    "errors"
    "fmt"
)

type Stack []interface{}

func (s *Stack) Push(x interface{}) {
    *s = append(*s, x)
}

func (s *Stack) Pop() (interface{}, error) {
    if len(*s) == 0 {
        return nil, errors.New("slice为空!")
    }
    result := (*s)[len(*s)-1]
    *s = (*s)[:len(*s)-1]
    return result, nil
}

func (s *Stack) Len() int {
    return len(*s)
}

func main() {
    s := new(Stack)
    s.Push(1)
    s.Push(2)
    fmt.Println(s, s.Len())
    s.Pop()
    fmt.Println(s, s.Len())
}

以上是关于用go实现的一个堆得数据结构的主要内容,如果未能解决你的问题,请参考以下文章

编程实践用 go 语言实现线程安全的 hashmap

编程实践用 go 语言实现Bloom filter算法

Go切片实现

[Go] 通过 17 个简短代码片段,切底弄懂 channel 基础

解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段

你知道的Go切片扩容机制可能是错的