garray开发

This commit is contained in:
John
2018-04-16 11:57:36 +08:00
parent edebdac257
commit 0ec797fde6
3 changed files with 113 additions and 66 deletions

View File

@ -75,4 +75,4 @@ func (a *IntArray) Slice() []int {
array := a.array
a.mu.RUnlock()
return array
}
}

View File

@ -0,0 +1,112 @@
// 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"
"sort"
"gitee.com/johng/gf/g/encoding/gbinary"
"bytes"
)
type SortedIntArray struct {
mu sync.RWMutex // 互斥锁
array []int // 底层数组
compareFunc func(v1, v2 int) int // 比较函数,返回值 -1: v1 < v20: v1==v21: v1 > v2
}
func NewSortedIntArray(size int, cap ... int) *SortedIntArray {
a := &SortedIntArray{}
if len(cap) > 0 {
a.array = make([]int, size, cap[0])
} else {
a.array = make([]int, size)
}
a.compareFunc = func(v1, v2 int) int {
return v1 < v2
}
return a
}
// 添加加数据项
func (a *SortedIntArray) Add(value int) {
a.mu.Lock()
a.array = append(a.array, value)
a.mu.Unlock()
}
// 获取指定索引的数据项, 调用方注意判断数组边界
func (a *SortedIntArray) Get(index int) int {
a.mu.RLock()
value := a.array[index]
a.mu.RUnlock()
return value
}
// 删除指定索引的数据项, 调用方注意判断数组边界
func (a *SortedIntArray) Remove(index int) {
a.mu.Lock()
a.array = append(a.array[ : index], a.array[index + 1 : ]...)
a.mu.RUnlock()
}
// 数组长度
func (a *SortedIntArray) Len() int {
a.mu.RLock()
length := len(a.array)
a.mu.RUnlock()
return length
}
// 返回原始数据数组
func (a *SortedIntArray) Slice() []int {
a.mu.RLock()
array := a.array
a.mu.RUnlock()
return array
}
// 查找指定数值的索引位置
func (a *SortedIntArray) Search(value int) int {
a.mu.RLock()
min := 0
max := len(a.array) - 1
mid := 0
cmp := -2
for {
if cmp == 0 || min > max {
break
}
for {
mid = int((min + max) / 2)
if a.lessFunc(a.array[mid], value) {
max = mid - 1
cmp = -1
} else if record.hash64 > hash64 {
min = mid + 1
cmp = 1
} else {
// 其次对比键名长度
klen := int(gbinary.DecodeBits(bits[64 : 72]))
if len(record.key) < klen {
max = mid - 1
cmp = -1
} else if len(record.key) > klen {
min = mid + 1
cmp = 1
} else {
}
}
if cmp == 0 || min > max {
break
}
}
}
a.mu.RUnlock()
return array
}

View File

@ -1,65 +0,0 @@
// 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"
//
//type IntArray struct {
// mu sync.RWMutex // 互斥锁
// array []int // 底层数组
// lessThanFunc func(v1, v2 int) bool // 比较函数如何判断v1比v2小
//}
//
//func NewIntArray(size int, cap ... int) *IntArray {
// a := &IntArray{}
// if len(cap) > 0 {
// a.array = make([]int, size, cap[0])
// } else {
// a.array = make([]int, size)
// }
// a.lessThanFunc = func(v1, v2 int) bool {
// return v1 < v2
// }
// return a
//}
//
//// 获取指定索引的数据项, 调用方注意判断数组边界
//func (a *IntArray) Get(index int) int {
// a.mu.RLock()
// value := a.array[index]
// a.mu.RUnlock()
// return value
//}
//
//// 设置指定索引的数据项, 调用方注意判断数组边界
//func (a *IntArray) Set(index int, value int) {
// a.mu.Lock()
// a.array[index] = value
// a.mu.Unlock()
//}
//
//// 删除指定索引的数据项, 调用方注意判断数组边界
//func (a *IntArray) Remove(index int) {
// a.mu.Lock()
// a.array = append(a.array[ : index], a.array[index + 1 : ]...)
// a.mu.RUnlock()
//}
//
//// 追加数据项
//func (a *IntArray) Append(value int) {
// a.mu.Lock()
// a.array = append(a.array, value)
// a.mu.Unlock()
//}
//
//// 数组长度
//func (a *IntArray) Len() int {
// a.mu.RLock()
// length := len(a.array)
// a.mu.RUnlock()
// return length
//}