go實現排序的鏈表

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

鏈表的資料結構比較線性數組,優點是 可以方便的對任意的位置進行插入和刪除。

這一特性使得它很適合於應用在排序等情境下,由於golang目前類庫還不是很完善,在java中可以很簡單的使用api提供的支援完成對list或者map的排序,在使用go時就沒有那麼幸運了,可能需要自己去實現。

下面的例子就是使用go package 中的LinkedList實現的排序的鏈表。

  • 有幾個功能特性:

1.支援固定的長度

2.可自訂排序的規則

3.組合LinkedList功能

package codeforfunimport (    "container/list")type SortedLinkedList struct {    *list.List    Limit int    compareFunc func (old, new interface{}) bool}func NewSortedLinkedList(limit int, compare func (old, new interface{}) bool) *SortedLinkedList {    return &SortedLinkedList{list.New(), limit, compare}}func (this SortedLinkedList) findInsertPlaceElement(value interface{}) *list.Element {    for element := this.Front(); element != nil; element = element.Next() {        tempValue := element.Value        if this.compareFunc(tempValue, value) {            return element        }    }    return nil}func (this SortedLinkedList) PutOnTop(value interface{}) {    if this.List.Len() == 0 {        this.PushFront(value)        return    }    if this.List.Len() < this.Limit && this.compareFunc(value, this.Back().Value) {        this.PushBack(value)        return    }    if this.compareFunc(this.List.Front().Value, value) {        this.PushFront(value)    } else if this.compareFunc(this.List.Back().Value, value) && this.compareFunc(value, this.Front().Value) {        element := this.findInsertPlaceElement(value)        if element != nil {            this.InsertBefore(value, element)        }    }    if this.Len() > this.Limit {        this.Remove(this.Back())    }}
  • 使用方法:
package mainimport (    "fmt"    "codeforfun")type WordCount struct {    Word  string    Count int}func compareValue(old, new interface {}) bool {    if new.(WordCount).Count > old.(WordCount).Count {        return true    }    return false}func main() {    wordCounts := []WordCount{        WordCount{"kate", 87},        WordCount{"herry", 92},        WordCount{"james", 81}}    var aSortedLinkedList = codeforfun.NewSortedLinkedList(10, compareValue)    for _, wordCount := range wordCounts {        aSortedLinkedList.PutOnTop(wordCount)    }    for element := aSortedLinkedList.List.Front(); element != nil; element = element.Next() {        fmt.Println(element.Value.(WordCount))    }}

  

還可以訪問我樹莓派上搭的部落格地址:

http://www.codeforfun.info/

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.