mirror of
https://github.com/pyihe/go-pkg.git
synced 2025-10-04 07:36:43 +08:00
184 lines
2.6 KiB
Go
184 lines
2.6 KiB
Go
package slices
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/pyihe/go-pkg/sorts"
|
|
)
|
|
|
|
type intSlice []int
|
|
|
|
func newIntSlice(c int) *intSlice {
|
|
s := make(intSlice, 0, c)
|
|
return &s
|
|
}
|
|
|
|
func (is *intSlice) String() string {
|
|
if is == nil {
|
|
return ""
|
|
}
|
|
return fmt.Sprintf("len:[%v] cap:[%v] value:%v", len(*is), cap(*is), *is)
|
|
}
|
|
|
|
func (is *intSlice) Len() int {
|
|
if is == nil {
|
|
return 0
|
|
}
|
|
return len(*is)
|
|
}
|
|
|
|
func (is *intSlice) Cap() int {
|
|
if is == nil {
|
|
return 0
|
|
}
|
|
return cap(*is)
|
|
}
|
|
|
|
func (is *intSlice) Sort() {
|
|
if is == nil {
|
|
return
|
|
}
|
|
sorts.SortInts(*is)
|
|
}
|
|
|
|
func (is *intSlice) PushBack(x interface{}) (bool, int) {
|
|
if is == nil {
|
|
return false, 0
|
|
}
|
|
ok, v := convertToInt(x)
|
|
if !ok {
|
|
return false, 0
|
|
}
|
|
n := len(*is)
|
|
c := cap(*is)
|
|
if n+1 > c {
|
|
ns := make(intSlice, n, c*2)
|
|
copy(ns, *is)
|
|
*is = ns
|
|
}
|
|
*is = (*is)[0 : n+1]
|
|
(*is)[n] = v
|
|
return true, n + 1
|
|
}
|
|
|
|
func (is *intSlice) PushFront(x interface{}) (bool, int) {
|
|
if is == nil {
|
|
return false, 0
|
|
}
|
|
ok, v := convertToInt(x)
|
|
if !ok {
|
|
return false, 0
|
|
}
|
|
n := len(*is)
|
|
c := cap(*is)
|
|
if n+1 > c {
|
|
ns := make(intSlice, n, c*2)
|
|
copy(ns, *is)
|
|
*is = ns
|
|
}
|
|
*is = (*is)[0 : n+1]
|
|
copy((*is)[1:n+1], (*is)[0:n])
|
|
(*is)[0] = v
|
|
return true, n + 1
|
|
}
|
|
|
|
func (is *intSlice) PopBack() (bool, interface{}) {
|
|
if is == nil {
|
|
return false, nil
|
|
}
|
|
n := len(*is)
|
|
c := cap(*is)
|
|
if n == 0 {
|
|
return false, nil
|
|
}
|
|
if n < (c/2) && c > 25 {
|
|
ns := make(intSlice, n, c/2)
|
|
copy(ns, *is)
|
|
*is = ns
|
|
}
|
|
x := (*is)[n-1]
|
|
*is = (*is)[0 : n-1]
|
|
return true, x
|
|
}
|
|
|
|
func (is *intSlice) PopFront() (bool, interface{}) {
|
|
if is == nil {
|
|
return false, nil
|
|
}
|
|
n := len(*is)
|
|
c := cap(*is)
|
|
if n == 0 {
|
|
return false, nil
|
|
}
|
|
if n < (c/2) && c > 25 {
|
|
ns := make(intSlice, n, c/2)
|
|
copy(ns, *is)
|
|
*is = ns
|
|
}
|
|
x := (*is)[0]
|
|
*is = (*is)[1:n]
|
|
return true, x
|
|
}
|
|
|
|
func (is *intSlice) Index(x interface{}) (index int) {
|
|
index = -1
|
|
if is == nil {
|
|
return
|
|
}
|
|
ok, v := convertToInt(x)
|
|
if !ok {
|
|
return
|
|
}
|
|
|
|
for i := range *is {
|
|
if (*is)[i] == v {
|
|
index = i
|
|
break
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
func (is *intSlice) IndexValue(index int) interface{} {
|
|
if is == nil {
|
|
return nil
|
|
}
|
|
n := len(*is)
|
|
if index < 0 || index >= n {
|
|
return nil
|
|
}
|
|
return (*is)[index]
|
|
}
|
|
|
|
func (is *intSlice) Range(fn func(index int, ele interface{}) bool) {
|
|
if is == nil {
|
|
return
|
|
}
|
|
for i, x := range *is {
|
|
if fn(i, x) {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
func (is *intSlice) Delete(x interface{}) (ok bool) {
|
|
if is == nil {
|
|
return
|
|
}
|
|
if len(*is) == 0 {
|
|
return
|
|
}
|
|
ok, v := convertToInt(x)
|
|
if !ok {
|
|
return false
|
|
}
|
|
for i, e := range *is {
|
|
if e == v {
|
|
*is = append((*is)[:i], (*is)[i+1:]...)
|
|
ok = true
|
|
break
|
|
}
|
|
}
|
|
return
|
|
}
|