doublelinkedlist

package
v0.0.0-...-63a9d49 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 24, 2023 License: Apache-2.0 Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type LinkedList

type LinkedList struct {
	// contains filtered or unexported fields
}

func NewLinkedList

func NewLinkedList() *LinkedList

func (*LinkedList) Add

func (list *LinkedList) Add(item interface{})

将指定元素添加到列表末尾。

func (*LinkedList) AddAt

func (list *LinkedList) AddAt(index int, item interface{})

将指定元素插入到列表的指定位置。

func (*LinkedList) Get

func (list *LinkedList) Get(index int) interface{}

返回列表中指定位置的元素。

func (*LinkedList) Remove

func (list *LinkedList) Remove(index int) bool

删除列表中指定位置的元素。

func (*LinkedList) Set

func (list *LinkedList) Set(index int, item interface{})

将列表中指定位置的元素替换为指定元素。

func (*LinkedList) Size

func (list *LinkedList) Size() int

返回列表的大小。

type Node

type Node struct {
	// contains filtered or unexported fields
}

type Set

type Set struct {
	// contains filtered or unexported fields
}

func (*Set) Add

func (set *Set) Add(item interface{})

向集合中添加元素。

func (*Set) Contains

func (set *Set) Contains(item interface{}) bool

检查集合中是否包含指定元素。

func (*Set) Remove

func (set *Set) Remove(item interface{}) bool

从集合中删除元素。

func (*Set) Size

func (set *Set) Size() int

返回集合中的元素数量。

func (*Set) ToSlice

func (set *Set) ToSlice() []interface{}

将集合转换为切片。

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL