drtpbx3606 2014-12-26 22:30
浏览 382
已采纳

如何在Golang中迭代同一列表时从列表中删除元素

I am new to go language. I would like to remove elements from the list while iterating the list based on a condition in go language. For example I want remove the duplicate elements from the list. Code is given below.

package main
import (
    "container/list"
    "fmt"
)
var sMap map[int]bool
func main() {
    l := list.New()
    l.PushFront(4)
    l.PushFront(5)
    l.PushFront(7)
    l.PushFront(6)
    l.PushFront(5)
    l.PushFront(4)
    l.PushFront(5)
    l.PushFront(7)
    l.PushBack(9)
    l = removeDuplicate(l)
    for e := l.Front(); e != nil; e = e.Next() {
        fmt.Println(e.Value)
    }
}
func removeDuplicate(l *list.List) *list.List {
    sMap = make(map[int]bool)
    for e := l.Front(); e != nil; e = e.Next() {
        m := e.Value.(int)
        fmt.Println("VALUE : ", m)
        if sMap[m] == true {
            fmt.Println("Deleting ", e.Value)
            l.Remove(e)
        } else {
            fmt.Println("Adding New Entry", e.Value)
            sMap[m] = true
        }
    }
    return l
}

The above code iterates through the list only till the first removal. I am trying to remove the element while iterating through the same list. That is the reason why it is not working. Could anyone suggest an list iterator in golang?

  • 写回答

1条回答 默认 最新

  • douxie7339 2014-12-26 22:56
    关注

    If e is removed from the list then call of e.Next() in the next loop will return nil. Therefore, need to assign e.Next() to the next before deleting e. Here is the example to clear all elements by iterating (in list_test.go)

    // Clear all elements by iterating
    var next *Element
    for e := l.Front(); e != nil; e = next {
        next = e.Next()
        l.Remove(e)
    }
    

    Same pattern can be applied to the question as following;

    package main
    import (
        "container/list"
        "fmt"
    )
    var sMap map[int]bool
    func main() {
        l := list.New()
        l.PushFront(4)
        l.PushFront(5)
        l.PushFront(7)
        l.PushFront(6)
        l.PushFront(5)
        l.PushFront(4)
        l.PushFront(5)
        l.PushFront(7)
        l.PushBack(9)
        l = removeDuplicate(l)
        for e := l.Front(); e != nil; e = e.Next() {
            fmt.Println(e.Value)
        }
    }
    func removeDuplicate(l *list.List) *list.List {
        sMap = make(map[int]bool)
        var next *list.Element
        for e := l.Front(); e != nil; e = next {
            m := e.Value.(int)
            next = e.Next()
            fmt.Println("VALUE : ", m)
            if sMap[m] == true {
                fmt.Println("Deleting ", e.Value)
                l.Remove(e)
            } else {
                fmt.Println("Adding New Entry", e.Value)
                sMap[m] = true
            }
        }
        return l
    }
    

    Output

    VALUE :  7
    Adding New Entry 7
    VALUE :  5
    Adding New Entry 5
    VALUE :  4
    Adding New Entry 4
    VALUE :  5
    Deleting  5
    VALUE :  6
    Adding New Entry 6
    VALUE :  7
    Deleting  7
    VALUE :  5
    Deleting  5
    VALUE :  4
    Deleting  4
    VALUE :  9
    Adding New Entry 9
    7
    5
    4
    6
    9
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 导入文件到网吧的电脑并且在重启之后不会被恢复
  • ¥15 (希望可以解决问题)ma和mb文件无法正常打开,打开后是空白,但是有正常内存占用,但可以在打开Maya应用程序后打开场景ma和mb格式。
  • ¥15 绘制多分类任务的roc曲线时只画出了一类的roc,其它的auc显示为nan
  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?