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 New

func New(capacity int) *Array

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

func (*Array) Add

func (a *Array) Add(index int, e int)

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

func (*Array) AddFirst

func (a *Array) AddFirst(e int)

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

func (*Array) AddLast

func (a *Array) AddLast(e int)

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

func (*Array) Contains

func (a *Array) Contains(e int) bool

Contains 查找数组中是否有元素 e

func (*Array) Find

func (a *Array) Find(e int) int

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

func (*Array) FindAll

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

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

func (*Array) Get

func (a *Array) Get(index int) int

Get 获取 index 索引位置的元素

func (*Array) GetCapacity

func (a *Array) GetCapacity() int

GetCapacity 获取数组的容量

func (*Array) GetSize

func (a *Array) GetSize() int

GetSize 获得数组中的元素个数

func (*Array) IsEmpty

func (a *Array) IsEmpty() bool

IsEmpty 返回数组是否为空

func (*Array) Remove

func (a *Array) Remove(index int) int

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

func (*Array) RemoveAllElement

func (a *Array) RemoveAllElement(e int) bool

RemoveAllElement 从数组中删除所有元素 e

func (*Array) RemoveElement

func (a *Array) RemoveElement(e int) bool

RemoveElement 从数组中删除一个元素 e

func (*Array) RemoveFirst

func (a *Array) RemoveFirst() int

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

func (*Array) RemoveLast

func (a *Array) RemoveLast() int

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

func (*Array) Set

func (a *Array) Set(index int, e int)

Set 修改 index 索引位置的元素

func (*Array) String

func (a *Array) String() string

重写 Array 的 string 方法

Jump to

Keyboard shortcuts

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