LinkedListR

package
v0.0.0-...-adc727d Latest Latest
Warning

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

Go to latest
Published: Oct 28, 2020 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type LinkedListR

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

func Constructor

func Constructor() *LinkedListR

func (*LinkedListR) Add

func (this *LinkedListR) Add(index int, e interface{})

在链表的index(0-based)位置添加新的元素e

func (*LinkedListR) AddFirst

func (this *LinkedListR) AddFirst(e interface{})

在链表头添加新的元素e

func (*LinkedListR) AddLast

func (this *LinkedListR) AddLast(e interface{})

在链表末尾添加新的元素e

func (*LinkedListR) Contains

func (this *LinkedListR) Contains(e interface{}) bool

查找链表中是否有元素e

func (*LinkedListR) Get

func (this *LinkedListR) Get(index int) interface{}

获得链表的第index(0-based)个位置的元素

func (*LinkedListR) GetFirst

func (this *LinkedListR) GetFirst() interface{}

获得链表的第一个元素

func (*LinkedListR) GetLast

func (this *LinkedListR) GetLast() interface{}

获得链表的最后一个元素

func (*LinkedListR) GetSize

func (this *LinkedListR) GetSize() int

获取链表中的元素个数

func (*LinkedListR) IsEmpty

func (this *LinkedListR) IsEmpty() bool

返回链表是否为空

func (*LinkedListR) Remove

func (this *LinkedListR) Remove(index int) interface{}

从链表中删除index(0-based)位置的元素, 返回删除的元素

func (*LinkedListR) RemoveElement

func (this *LinkedListR) RemoveElement(e interface{})

从链表中删除元素e

func (*LinkedListR) RemoveFirst

func (this *LinkedListR) RemoveFirst() interface{}

从链表中删除第一个元素, 返回删除的元素

func (*LinkedListR) RemoveLast

func (this *LinkedListR) RemoveLast() interface{}

从链表中删除最后一个元素, 返回删除的元素

func (*LinkedListR) Set

func (this *LinkedListR) Set(index int, e interface{})

修改链表的第index(0-based)个位置的元素为e

func (*LinkedListR) String

func (this *LinkedListR) String() string

type Node

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

Jump to

Keyboard shortcuts

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