array

package
v0.0.0-...-3b2a8e7 Latest Latest
Warning

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

Go to latest
Published: May 18, 2022 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Array

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

func GetArrayFromArr

func GetArrayFromArr(arr []interface{}) *Array

func New

func New(capacity int) *Array

构造函数,传入数组的容量capacity构造Array

func (*Array) Add

func (a *Array) Add(index int, e interface{})

在第 index 个位置插入一个新元素 e

func (*Array) AddFirst

func (a *Array) AddFirst(e interface{})

向所有元素前添加一个新元素

func (*Array) AddLast

func (a *Array) AddLast(e interface{})

向所有元素后添加一个新元素

func (*Array) Contains

func (a *Array) Contains(e interface{}) bool

查找数组中是否有元素 e

func (*Array) Find

func (a *Array) Find(e interface{}) int

查找数组中元素 e 所在的索引,不存在则返回 -1

func (*Array) FindAll

func (a *Array) FindAll(e interface{}) (indexes []int)

查找数组中元素 e 所有的索引组成的切片,不存在则返回 -1

func (*Array) Get

func (a *Array) Get(index int) interface{}

获取 index 索引位置的元素

func (*Array) GetCapacity

func (a *Array) GetCapacity() int

获取数组的容量

func (*Array) GetSize

func (a *Array) GetSize() int

获得数组中的元素个数

func (*Array) IsEmpty

func (a *Array) IsEmpty() bool

返回数组是否为空

func (*Array) Remove

func (a *Array) Remove(index int) interface{}

从数组中删除 index 位置的元素,返回删除的元素

func (*Array) RemoveAllElement

func (a *Array) RemoveAllElement(e interface{}) bool

从数组中删除所有元素 e

func (*Array) RemoveElement

func (a *Array) RemoveElement(e interface{}) bool

从数组中删除一个元素 e

func (*Array) RemoveFirst

func (a *Array) RemoveFirst() interface{}

从数组中删除第一个元素,返回删除的元素

func (*Array) RemoveLast

func (a *Array) RemoveLast() interface{}

从数组中删除最后一个元素,返回删除的元素

func (*Array) Set

func (a *Array) Set(index int, e interface{})

修改 index 索引位置的元素

func (*Array) String

func (a *Array) String() string

重写 Array 的 string 方法

func (*Array) Swap

func (a *Array) Swap(i int, j int)

Jump to

Keyboard shortcuts

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