gf/g/container/garray/garray_sorted_interface.go

170 lines
4.4 KiB
Go
Raw Normal View History

2018-04-16 17:59:23 +08:00
// Copyright 2018 gf Author(https://gitee.com/johng/gf). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
package garray
import (
"gitee.com/johng/gf/g/container/gtype"
"gitee.com/johng/gf/g/container/internal/rwmutex"
2018-04-16 17:59:23 +08:00
)
// 默认按照从低到高进行排序
type SortedArray struct {
mu *rwmutex.RWMutex // 互斥锁
cap int // 初始化设置的数组容量
2018-04-16 17:59:23 +08:00
array []interface{} // 底层数组
unique *gtype.Bool // 是否要求不能重复
compareFunc func(v1, v2 interface{}) int // 比较函数,返回值 -1: v1 < v20: v1 == v21: v1 > v2
}
func NewSortedArray(cap int, compareFunc func(v1, v2 interface{}) int, safe...bool) *SortedArray {
2018-04-16 17:59:23 +08:00
return &SortedArray{
mu : rwmutex.New(safe...),
2018-04-16 17:59:23 +08:00
unique : gtype.NewBool(),
array : make([]interface{}, 0, cap),
2018-04-16 17:59:23 +08:00
compareFunc : compareFunc,
}
}
// 添加加数据项
func (a *SortedArray) Add(values...interface{}) {
if len(values) == 0 {
2018-04-16 17:59:23 +08:00
return
}
for _, value := range values {
index, cmp := a.Search(value)
if a.unique.Val() && cmp == 0 {
continue
}
2018-04-16 17:59:23 +08:00
a.mu.Lock()
if index < 0 {
a.array = append(a.array, value)
a.mu.Unlock()
continue
}
// 加到指定索引后面
if cmp > 0 {
index++
}
rear := append([]interface{}{}, a.array[index : ]...)
a.array = append(a.array[0 : index], value)
a.array = append(a.array, rear...)
a.mu.Unlock()
2018-04-16 17:59:23 +08:00
}
}
// 获取指定索引的数据项, 调用方注意判断数组边界
func (a *SortedArray) Get(index int) interface{} {
a.mu.RLock()
defer a.mu.RUnlock()
2018-04-16 17:59:23 +08:00
value := a.array[index]
return value
}
// 删除指定索引的数据项, 调用方注意判断数组边界
func (a *SortedArray) Remove(index int) {
a.mu.Lock()
defer a.mu.Unlock()
2018-04-16 17:59:23 +08:00
a.array = append(a.array[ : index], a.array[index + 1 : ]...)
}
// 数组长度
func (a *SortedArray) Len() int {
a.mu.RLock()
length := len(a.array)
a.mu.RUnlock()
return length
}
// 返回原始数据数组
func (a *SortedArray) Slice() []interface{} {
array := ([]interface{})(nil)
if a.mu.IsSafe() {
a.mu.RLock()
array = make([]interface{}, len(a.array))
for k, v := range a.array {
array[k] = v
}
a.mu.RUnlock()
} else {
array = a.array
}
2018-04-16 17:59:23 +08:00
return array
}
// 查找指定数值的索引位置,返回索引位置(具体匹配位置或者最后对比位置)及查找结果
2018-08-23 17:24:24 +08:00
// 返回值: 最后比较位置, 比较结果
2018-04-16 17:59:23 +08:00
func (a *SortedArray) Search(value interface{}) (int, int) {
if len(a.array) == 0 {
return -1, -2
}
a.mu.RLock()
min := 0
max := len(a.array) - 1
mid := 0
cmp := -2
for {
2018-08-23 17:24:24 +08:00
mid = int((min + max) / 2)
cmp = a.compareFunc(value, a.array[mid])
switch cmp {
case -1 : max = mid - 1
case 0 :
case 1 : min = mid + 1
}
2018-04-16 17:59:23 +08:00
if cmp == 0 || min > max {
break
}
}
a.mu.RUnlock()
return mid, cmp
}
// 设置是否允许数组唯一
func (a *SortedArray) SetUnique(unique bool) {
oldUnique := a.unique.Val()
a.unique.Set(unique)
if unique && oldUnique != unique {
a.doUnique()
}
}
2018-04-16 17:59:23 +08:00
// 清理数组中重复的元素项
func (a *SortedArray) doUnique() {
2018-04-16 17:59:23 +08:00
a.mu.Lock()
i := 0
for {
2018-04-16 17:59:23 +08:00
if i == len(a.array) - 1 {
break
}
if a.compareFunc(a.array[i], a.array[i + 1]) == 0 {
a.array = append(a.array[ : i + 1], a.array[i + 1 + 1 : ]...)
} else {
i++
2018-04-16 17:59:23 +08:00
}
}
a.mu.Unlock()
}
2018-04-16 17:59:23 +08:00
// 清空数据数组
func (a *SortedArray) Clear() {
a.mu.Lock()
a.array = make([]interface{}, 0, a.cap)
2018-04-16 17:59:23 +08:00
a.mu.Unlock()
}
// 使用自定义方法执行加锁修改操作
func (a *SortedArray) LockFunc(f func(array []interface{})) {
a.mu.Lock(true)
defer a.mu.Unlock(true)
f(a.array)
}
// 使用自定义方法执行加锁读取操作
func (a *SortedArray) RLockFunc(f func(array []interface{})) {
a.mu.RLock(true)
defer a.mu.RUnlock(true)
f(a.array)
2018-04-16 17:59:23 +08:00
}