復習一下數(shù)據(jù)結(jié)構(gòu),用golang來實現(xiàn)單向鏈表
成都創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設,五華企業(yè)網(wǎng)站建設,五華品牌網(wǎng)站建設,網(wǎng)站定制,五華網(wǎng)站建設報價,網(wǎng)絡營銷,網(wǎng)絡優(yōu)化,五華網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力。可充分滿足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。
package main
import "fmt"
type Object interface{}
type Node struct {
Data Object
next *Node
}
type List struct {
size uint64
head *Node
tail *Node
}
func (list *List) Init() {
(*list).size = 0
(*list).head = nil
(*list).tail = nil
}
// 向鏈表追加節(jié)點
func (list *List) Append(node *Node) bool {
if node == nil {
return false
}
(*node).next = nil // 新加節(jié)點在末尾,沒有next
if (*list).size == 0 {
(*list).head = node
} else {
oldTail := (*list).tail // 取尾結(jié)點
(*oldTail).next = node // 尾結(jié)點的next指向新加節(jié)點
}
(*list).tail = node // 新節(jié)點是尾結(jié)點
(*list).size++
return true
}
// 向第i個節(jié)點處插入節(jié)點
func (list *List) Insert(i uint64, node *Node) bool {
if node == nil || i > (*list).size || (*list).size == 0 {
return false
}
if i == 0 {
(*node).next = (*list).head
(*list).head = node
} else {
preNode := (*list).head
for j := uint64(1); j < i; j++ {
preNode = (*preNode).next
}
(*node).next = (*preNode).next // 新節(jié)點指向舊節(jié)點原來所指的next
(*preNode).next = node // 原節(jié)點的next指向新節(jié)點
}
(*list).size++
return true
}
// 移除指定位置的節(jié)點
func (list *List) Remove(i uint64) bool {
if i >= (*list).size {
return false
}
if i == 0 {
preHead := (*list).head // 取出舊的鏈表頭
(*list).head = preHead.next // 舊鏈表頭的next變?yōu)樾碌念^
// 如果僅有一個節(jié)點,則頭尾節(jié)點清空
if (*list).size == 1 {
(*list).head = nil
(*list).tail = nil
}
} else {
preNode := (*list).head
for j := uint64(1); j < i; j++ {
preNode = (*preNode).next
}
node := (*preNode).next // 找到當前要刪除的節(jié)點
(*preNode).next = node.next // 把當前要刪除節(jié)點的next賦給其父節(jié)點的next,完成后代轉(zhuǎn)移
// 若刪除的尾部,尾部指針需要調(diào)整
if i == ((*list).size - 1) {
(*list).tail = preNode
}
}
(*list).size--
return true
}
// 移除所有節(jié)點
func (list *List) RemoveAll() bool {
(*list).Init()
return true
}
// 獲取指定位置的節(jié)點
func (list *List) Get(i uint64) *Node {
if i >= (*list).size {
return nil
}
node := (*list).head
for j := uint64(0); j < i; j++ {
node = (*node).next
}
return node
}
// 搜索某個數(shù)據(jù)的節(jié)點位置
func (list *List) IndexOf(data Object) int64 {
pos := int64(-1)
node := (*list).head
if node.Data == data {
return 0
}
for j := uint64(1); j < (*list).size; j++ {
if node != nil {
node = (*node).next
if node != nil && node.Data == data {
pos = int64(j)
break
}
}
}
return pos
}
// 取得鏈表長度
func (list *List) GetSize() uint64 {
return (*list).size
}
// 取得鏈表頭
func (list *List) GetHead() *Node {
return (*list).head
}
// 取得鏈表尾
func (list *List) GetTail() *Node {
return (*list).tail
}
func main() {
var l List
l.Init()
node1 := &Node{Data: 11111}
l.Append(node1)
node2 := &Node{Data: 22222}
l.Append(node2)
node3 := &Node{Data: 33333}
l.Append(node3)
node4 := &Node{Data: "insert"}
l.Insert(1, node4)
node5 := &Node{Data: "head"}
l.Insert(0, node5)
node6 := &Node{Data: "tail"}
l.Append(node6)
l.Remove(0)
l.Remove(1)
l.Remove(3)
pos1 := l.IndexOf(22222)
pos2 := l.IndexOf(44444)
fmt.Println(pos1, pos2)
fmt.Println(l.GetHead(), l.GetTail(), l.GetSize())
fmt.Println()
//l.RemoveAll()
for i := uint64(0); i < l.size; i++ {
fmt.Println(l.Get(i))
}
}