91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Go語言列表List獲取元素的方式有哪些

發布時間:2022-04-20 13:55:46 來源:億速云 閱讀:226 作者:iii 欄目:開發技術

這篇文章主要介紹了Go語言列表List獲取元素的方式有哪些的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Go語言列表List獲取元素的方式有哪些文章都會有所收獲,下面我們一起來看看吧。

Golang的列表元素的獲取可以使用內置的 Front 函數獲取頭結點,使用 Back 函數獲取尾結點,使用 Prev 獲取前一個結點,使用 Next 獲取下一個結點。

1、獲取列表頭結點

Front() *Element

package main
import (
    "container/list"
    "fmt"
)
func main() {
    fmt.Println("嗨客網(www.haicoder.net)")
    //使用列表內置的 Front() 函數,獲取列表的頭結點
    listHaiCoder := list.New()
    listHaiCoder.PushFront("Hello")
    listHaiCoder.PushFront("HaiCoder")
    listHaiCoder.PushFront("嗨客網")
    element := listHaiCoder.Front()
    fmt.Println("Front =", element.Value)
}

使用列表內置的 Front() 函數,獲取列表的頭結點。

2、獲取列表尾結點

Back () *Element

package main
import (
    "container/list"
    "fmt"
)
func main() {
    fmt.Println("嗨客網(www.haicoder.net)")
    //使用列表內置的 Back() 函數,獲取列表的尾結點
    listHaiCoder := list.New()
    listHaiCoder.PushFront("Hello")
    listHaiCoder.PushFront("HaiCoder")
    listHaiCoder.PushFront("嗨客網")
    element := listHaiCoder.Back()
    fmt.Println("Back =", element.Value)
}

使用列表內置的 Back() 函數,獲取列表的尾結點。

3、獲取上一個結點

Prev() *Element

package main
import (
    "container/list"
    "fmt"
)
func main() {
    fmt.Println("嗨客網(www.haicoder.net)")
    //使用列表內置的 Prev() 函數,獲取列表的上一個結點
    listHaiCoder := list.New()
    listHaiCoder.PushFront("Hello")
    element := listHaiCoder.PushFront("HaiCoder")
    listHaiCoder.PushFront("嗨客網")
    preElement := element.Prev()
    fmt.Println("preElement =", preElement.Value)
}

使用列表內置的 Prev() 函數,獲取列表的上一個結點。

4、獲取下一個結點

Next() *Element

package main
import (
    "container/list"
    "fmt"
)
func main() {
    fmt.Println("嗨客網(www.haicoder.net)")
    //使用列表內置的 Next() 函數,獲取列表的下一個結點
    listHaiCoder := list.New()
    listHaiCoder.PushFront("Hello")
    element := listHaiCoder.PushFront("HaiCoder")
    listHaiCoder.PushFront("嗨客網")
    nextElement := element.Next()
    fmt.Println("nextElement =", nextElement.Value)
}

使用列表內置的 Next() 函數,獲取列表的下一個結點。

關于“Go語言列表List獲取元素的方式有哪些”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Go語言列表List獲取元素的方式有哪些”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

奉贤区| 宁波市| 工布江达县| 黔江区| 四子王旗| 邵武市| 韶山市| 内乡县| 三原县| 博爱县| 连江县| 修水县| 湟源县| 绩溪县| 尉犁县| 上杭县| 介休市| 天峨县| 大庆市| 乐至县| 阿克陶县| 太湖县| 宜宾市| 翼城县| 凤台县| 周宁县| 含山县| 昆明市| 申扎县| 博白县| 石首市| 双峰县| 洮南市| 胶州市| 济阳县| 手游| 昔阳县| 阿巴嘎旗| 曲周县| 晋宁县| 锡林浩特市|