日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長(zhǎng)提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請(qǐng)做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:52000
  • 待審:37
  • 小程序:12
  • 文章:1037587
  • 會(huì)員:756

Go語(yǔ)言編程指南:?jiǎn)捂湵韺?shí)現(xiàn)詳解

在Go語(yǔ)言中,單鏈表是一種常見的數(shù)據(jù)結(jié)構(gòu),用于存儲(chǔ)一系列元素并按順序訪問(wèn)。本文將詳細(xì)介紹單鏈表的實(shí)現(xiàn)原理,并給出具體的Go語(yǔ)言代碼示例。

單鏈表的定義

單鏈表是一種線性表的數(shù)據(jù)結(jié)構(gòu),其中的每個(gè)元素(節(jié)點(diǎn))包含兩部分:數(shù)據(jù)域和指針域。數(shù)據(jù)域用于存儲(chǔ)元素的值,指針域則指向下一個(gè)節(jié)點(diǎn)。最后一個(gè)節(jié)點(diǎn)的指針域通常為空,表示鏈表的結(jié)束。

單鏈表的節(jié)點(diǎn)定義

首先,我們定義一個(gè)單鏈表的節(jié)點(diǎn)類型:

type Node struct {
    data int
    next *Node
}

登錄后復(fù)制

其中,data字段存儲(chǔ)節(jié)點(diǎn)的值,next字段存儲(chǔ)指向下一個(gè)節(jié)點(diǎn)的指針。

單鏈表的初始化

接下來(lái),我們定義單鏈表的初始化函數(shù):

type LinkedList struct {
    head *Node
}

func NewLinkedList() *LinkedList {
    return &LinkedList{}
}

登錄后復(fù)制

在初始化函數(shù)中,我們創(chuàng)建一個(gè)空的鏈表,并將頭節(jié)點(diǎn)指針初始化為空。

單鏈表的插入操作

實(shí)現(xiàn)單鏈表的插入操作可以分為兩種情況:在鏈表頭部插入節(jié)點(diǎn)和在鏈表尾部插入節(jié)點(diǎn)。

首先是在鏈表頭部插入節(jié)點(diǎn)的函數(shù):

func (list *LinkedList) InsertAtBeginning(value int) {
    newNode := &Node{data: value}
    newNode.next = list.head
    list.head = newNode
}

登錄后復(fù)制

在這個(gè)函數(shù)中,我們首先創(chuàng)建一個(gè)新節(jié)點(diǎn)并將其值初始化為傳入的數(shù)值。然后將新節(jié)點(diǎn)的指針指向鏈表頭部,最后更新鏈表的頭節(jié)點(diǎn)為新節(jié)點(diǎn)。

接下來(lái)是在鏈表尾部插入節(jié)點(diǎn)的函數(shù):

func (list *LinkedList) InsertAtEnd(value int) {
    newNode := &Node{data: value}
    if list.head == nil {
        list.head = newNode
        return
    }

    current := list.head
    for current.next != nil {
        current = current.next
    }
    current.next = newNode
}

登錄后復(fù)制

這個(gè)函數(shù)首先創(chuàng)建一個(gè)新節(jié)點(diǎn),并判斷鏈表是否為空。如果為空,則直接將新節(jié)點(diǎn)設(shè)為頭節(jié)點(diǎn);否則,遍歷鏈表直到找到最后一個(gè)節(jié)點(diǎn),然后將新節(jié)點(diǎn)插入到最后一個(gè)節(jié)點(diǎn)的后面。

單鏈表的刪除操作

刪除操作分為兩種情況:刪除頭節(jié)點(diǎn)和刪除指定數(shù)值的節(jié)點(diǎn)。

首先是刪除頭節(jié)點(diǎn)的函數(shù):

func (list *LinkedList) DeleteAtBeginning() {
    if list.head == nil {
        return
    }
    list.head = list.head.next
}

登錄后復(fù)制

這個(gè)函數(shù)直接將頭節(jié)點(diǎn)指針指向下一個(gè)節(jié)點(diǎn),從而刪除了頭節(jié)點(diǎn)。

接下來(lái)是刪除指定數(shù)值的節(jié)點(diǎn)的函數(shù):

func (list *LinkedList) DeleteByValue(value int) {
    if list.head == nil {
        return
    }
    if list.head.data == value {
        list.head = list.head.next
        return
    }

    prev := list.head
    current := list.head.next
    for current != nil {
        if current.data == value {
            prev.next = current.next
            return
        }
        prev = current
        current = current.next
    }
}

登錄后復(fù)制

這個(gè)函數(shù)中,我們需要先判斷鏈表是否為空。然后從頭節(jié)點(diǎn)開始遍歷鏈表,找到目標(biāo)數(shù)值所在的節(jié)點(diǎn)并刪除。

單鏈表的遍歷操作

最后是單鏈表的遍歷操作:

func (list *LinkedList) Print() {
    current := list.head
    for current != nil {
        fmt.Print(current.data, " ")
        current = current.next
    }
    fmt.Println()
}

登錄后復(fù)制

這個(gè)函數(shù)從頭節(jié)點(diǎn)開始逐個(gè)打印節(jié)點(diǎn)的值,直到鏈表結(jié)束。

示例代碼

下面是一個(gè)完整的示例代碼,演示了如何使用單鏈表:

package main

import "fmt"

type Node struct {
    data int
    next *Node
}

type LinkedList struct {
    head *Node
}

func NewLinkedList() *LinkedList {
    return &LinkedList{}
}

func (list *LinkedList) InsertAtBeginning(value int) {
    newNode := &Node{data: value}
    newNode.next = list.head
    list.head = newNode
}

func (list *LinkedList) InsertAtEnd(value int) {
    newNode := &Node{data: value}
    if list.head == nil {
        list.head = newNode
        return
    }

    current := list.head
    for current.next != nil {
        current = current.next
    }
    current.next = newNode
}

func (list *LinkedList) DeleteAtBeginning() {
    if list.head == nil {
        return
    }
    list.head = list.head.next
}

func (list *LinkedList) DeleteByValue(value int) {
    if list.head == nil {
        return
    }
    if list.head.data == value {
        list.head = list.head.next
        return
    }

    prev := list.head
    current := list.head.next
    for current != nil {
        if current.data == value {
            prev.next = current.next
            return
        }
        prev = current
        current = current.next
    }
}

func (list *LinkedList) Print() {
    current := list.head
    for current != nil {
        fmt.Print(current.data, " ")
        current = current.next
    }
    fmt.Println()
}

func main() {
    list := NewLinkedList()

    list.InsertAtEnd(1)
    list.InsertAtEnd(2)
    list.InsertAtEnd(3)
    list.Print()

    list.DeleteByValue(2)
    list.Print()

    list.DeleteAtBeginning()
    list.Print()
}

登錄后復(fù)制

分享到:
標(biāo)簽:Go語(yǔ)言 單鏈表 實(shí)現(xiàn)
用戶無(wú)頭像

網(wǎng)友整理

注冊(cè)時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 52000

    網(wǎng)站

  • 12

    小程序

  • 1037587

    文章

  • 756

    會(huì)員

趕快注冊(cè)賬號(hào),推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過(guò)答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫(kù),初中,高中,大學(xué)四六

運(yùn)動(dòng)步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動(dòng)步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績(jī)?cè)u(píng)定2018-06-03

通用課目體育訓(xùn)練成績(jī)?cè)u(píng)定