您好,登錄后才能下訂單哦!
這篇文章主要介紹了Go語言列表List獲取元素的方式有哪些的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Go語言列表List獲取元素的方式有哪些文章都會有所收獲,下面我們一起來看看吧。
Golang的列表元素的獲取可以使用內置的 Front 函數獲取頭結點,使用 Back 函數獲取尾結點,使用 Prev 獲取前一個結點,使用 Next 獲取下一個結點。
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() 函數,獲取列表的頭結點。
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() 函數,獲取列表的尾結點。
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() 函數,獲取列表的上一個結點。
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獲取元素的方式有哪些”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。