Golang程序 在第i个索引节点插入一个节点,当索引在链表中处于第0个位置时
例子

解决这个问题的方法
第1步 - 定义一个接受链表头部的方法。
第2步 - 如果 head == nil,创建一个新的节点,使其成为 head ,并返回它作为新的 head
第3步 - 当index == 0时,则更新head。
第4步 - 从头部开始迭代给定的链表。同时,初始化 preNode ,它将保持前一个节点的存储地址。
第5步 - 如果索引i与给定的索引相匹配,则删除该 节点。接下来 ,打破循环。
第6步 - 返回,在循环结束时。
例子
package main
import "fmt"
type Node struct {
value int
next *Node
}
func NewNode(value int, next *Node) *Node{
var n Node
n.value = value
n.next = next
return &n
}
func TraverseLinkedList(head *Node){
temp := head
for temp != nil {
fmt.Printf("%d ", temp.value)
temp = temp.next
}
fmt.Println()
}
func InsertNodeAtIthIndex(head *Node, index, data int) *Node{
if head == nil{
head = NewNode(data, nil)
return head
}
if index == 0{
newNode := NewNode(data, nil)
newNode.next = head
head = newNode
return head
}
i := 0
temp := head
preNode := temp
for temp != nil {
if i == index{
newNode := NewNode(data, nil)
preNode.next = newNode
newNode.next = temp
break
}
i++
preNode = temp
temp = temp.next
}
return head
}
func main(){
head := NewNode(30, NewNode(10, NewNode(40, NewNode(40, nil))))
fmt.Printf("Input Linked list is: ")
TraverseLinkedList(head)
index := 0
head = InsertNodeAtIthIndex(head, index, 5)
fmt.Printf("Inserting new node at %dth index, Linked List is: ", index)
TraverseLinkedList(head)
}
输出
Input Linked list is: 30 10 40 40
Inserting new node at 0th index, Linked List is: 5 30 10 40 40
极客教程