Go语言数据结构和算法-LinkedList(链表)

Go语言数据结构和算法-LinkedList(链表)

Prepend(item)       //  在链表头新增一个元素
Append(item)        //  在链表尾追加一个元素
InsertAt(i,item)    //  在索引i处插入一个元素
RemoveAt(i)         //  删除再索引i处的一个元素
Remove(item)        //  删除item元素
IndexOf(item)       //  返回item的索引
IsEmpty()           //  链表是否为空
Size()              //  链表的大小
Head()              //  链表的头节点
Tail()              //  链表的尾节点
String()            //  遍历链表
复制代码
节点和链表数据结构
type Node struct {
	item interface{}
	next *Node
}

type LinkedList struct {
	head *Node
	size int
  lock sync.RWMutex
}
复制代码
Prepend(item) 在链表头新增一个元素
func (list *LinkedList) Prepend(item interface{}) {
  list.lock.Lock()
	defer list.lock.Unlock()
	node := &Node{item,nil}
	if list.head == nil{
		list.head = node
	}else{
		node.next = list.head
		list.head = node
	}
	list.size += 1
}
复制代码
Append(item) 在链表尾追加一个元素
func (list *LinkedList) Append(item interface{}) {
  list.lock.Lock()
	defer list.lock.Unlock()
	node := &Node{item, nil}
	if list.head == nil {
		list.head = node
	} else {
		cur := list.head
		for cur.next != nil {
			cur = cur.next
		}
		cur.next = node
	}
	list.size += 1
}
复制代码
InsertAt(i,item) 在索引i处插入一个元素
func (list *LinkedList) InsertAt(i int, item interface{}) error {
	list.lock.Lock()
	defer list.lock.Unlock()
	if i > list.size || i < 0 {
		return fmt.Errorf("index error")
	}

	node := &Node{item, nil}
	if i == 0 {
		node.next = list.head
		list.head = node
		list.size += 1
		return nil
	}
	cur := list.head
	for cur.next != nil && i != 1 {
		i -= 1
		cur = cur.next
	}
	node.next = cur.next
	cur.next = node
	list.size += 1

	return nil
}
复制代码
RemoveAt(i) 删除再索引i处的一个元素
func (list *LinkedList) RemoveAt(i int) bool {
	list.lock.Lock()
	defer list.lock.Unlock()
	if i < 0 || i >= list.size {
		return false
	}
	if list.head == nil {
		return false
	}

	if i == 0 {
		list.head = list.head.next
		list.size -= 1
		return true
	}

	cur := list.head
	for cur.next != nil && i != 1 {
		i -= 1
		cur = cur.next
	}
	cur.next = cur.next.next
	list.size -= 1
	return true
}
复制代码
Remove(item) 删除item元素
func (list *LinkedList) Remove(item interface{}) bool {
	list.lock.Lock()
	defer list.lock.Unlock()
	if list.head == nil {
		return false
	}
	if list.head.item == item {
		list.head = list.head.next
		list.size -= 1
		return true
	}

	cur := list.head
	for cur.next != nil {
		if cur.next.item == item {
			cur.next = cur.next.next
			list.size -= 1
			return true
		}
		cur = cur.next
	}
	return false
}
复制代码
IndexOf(item) 返回item的索引,如果不存在就返回-1
func (list *LinkedList) IndexOf(item interface{}) int {
  list.lock.Lock()
	defer list.lock.Unlock()
	cur := list.head
	index := -1
	for cur != nil {
		index += 1
		if item == cur.item {
			return index
		}
		cur = cur.next
	}
	return -1
}
复制代码
IsEmpty() 链表是否为空
func (list *LinkedList) IsEmpty() bool {
  list.lock.Lock()
	defer list.lock.Unlock()
	return list.size == 0
}
复制代码
Size() 链表的大小
func (list *LinkedList) Size() int {
  list.lock.Lock()
	defer list.lock.Unlock()
	return list.size
}
复制代码
Head() 链表头节点
func (list *LinkedList) Head() *Node {
  list.lock.Lock()
	defer list.lock.Unlock()
	return list.head
}
复制代码
Tail() 链表尾节点
func (list *LinkedList) Tail() *Node {
  list.lock.Lock()
	defer list.lock.Unlock()
	cur := list.head
	for cur.next != nil {
		cur = cur.next
	}
	return cur
}
复制代码
String() 遍历真个链表
func (list *LinkedList) String() {
  list.lock.Lock()
	defer list.lock.Unlock()
	cur := list.head
	for cur != nil {
		fmt.Print(cur.item, "->")
		cur = cur.next
	}
}
复制代码

源码

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值