[Go语言]实现链表

链表是一个结点指向下一个结点的存储结构,每一个结点有两个元素,一个是存放数据本身,另一个数据指向下一个结点,由这些结点组成一个链表

思路:

  • 需要先定义一个结点类包含两个元素,一个数据,一个指向下一结点
  • 定义一个链表,包含一个头结点的元素
  • 根据链表中头结点中包含下一个结点循环找到最后的结点,在最后增加新的结点

代码实现

package main

import "fmt"

type Node struct {
	data int
	next *Node
}

type NodeList struct {
	headNode *Node
}

func (this *NodeList) add(data int) {
	node := Node{data: data, next: nil}
	if this.headNode == nil {
		this.headNode = &node
	} else {
		tmp := this.headNode
		for tmp.next != nil {
			tmp = tmp.next
		}
		tmp.next = &node
	}
}
func (this *NodeList) showall() {
	if this.headNode == nil {
		fmt.Println("no data")
	} else {
		tmp := this.headNode
		for tmp.next != nil {
			fmt.Println(tmp.data)
			tmp = tmp.next
		}
		fmt.Println(tmp.data)
	}
}
func main() {
	var nl = new(NodeList)
	nl.add(1)
	nl.add(2)
	nl.add(3)
	nl.add(4)
	nl.showall()
}

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值