gf/g/container/garray/garray_sorted_interface.go

165 lines
4.3 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 (
"sync"
"gitee.com/johng/gf/g/container/gtype"
)
// 默认按照从低到高进行排序
type SortedArray struct {
mu sync.RWMutex // 互斥锁
cap int // 初始化设置的数组容量
size 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(size int, cap int, compareFunc func(v1, v2 interface{}) int) *SortedArray {
return &SortedArray{
unique : gtype.NewBool(),
array : make([]interface{}, size, cap),
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 {
return
}
2018-04-16 17:59:23 +08:00
a.mu.Lock()
defer a.mu.Unlock()
if index < 0 {
a.array = append(a.array, value)
return
}
// 加到指定索引后面
if cmp > 0 {
index++
}
rear := append([]interface{}{}, a.array[index : ]...)
a.array = append(a.array[0 : index], value)
a.array = append(a.array, rear...)
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{} {
a.mu.RLock()
array := a.array
a.mu.RUnlock()
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()
if a.cap > 0 {
a.array = make([]interface{}, a.size, a.cap)
} else {
a.array = make([]interface{}, a.size)
2018-04-16 17:59:23 +08:00
}
a.mu.Unlock()
}
// 使用自定义方法执行加锁修改操作
func (a *SortedArray) LockFunc(f func(array []interface{})) {
a.mu.Lock()
defer a.mu.Unlock()
f(a.array)
}
// 使用自定义方法执行加锁读取操作
func (a *SortedArray) RLockFunc(f func(array []interface{})) {
a.mu.RLock()
defer a.mu.RUnlock()
f(a.array)
2018-04-16 17:59:23 +08:00
}