2 Star 2 Fork 7

王布衣 / gox

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
linkedhashset.go 3.02 KB
一键复制 编辑 原始数据 按行查看 历史
王布衣 提交于 2023-06-07 20:08 . 修订部分util工具库
// Copyright (c) 2015, Emir Pasic. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package linkedhashset is a set that preserves insertion-order.
//
// It is backed by a hash table to store values and doubly-linked list to store ordering.
//
// Note that insertion-order is not affected if an element is re-inserted into the set.
//
// Structure is not thread safe.
//
// References: http://en.wikipedia.org/wiki/Set_%28abstract_data_type%29
package linkedhashset
import (
"fmt"
"gitee.com/quant1x/gox/util/doublylinkedlist"
"gitee.com/quant1x/gox/util/internal"
"strings"
)
func assertSetImplementation() {
var _ internal.Set = (*Set)(nil)
}
// Set holds elements in go's native map
type Set struct {
table map[interface{}]struct{}
ordering *doublylinkedlist.List
}
var itemExists = struct{}{}
// New instantiates a new empty set and adds the passed values, if any, to the set
func New(values ...interface{}) *Set {
set := &Set{
table: make(map[interface{}]struct{}),
ordering: doublylinkedlist.New(),
}
if len(values) > 0 {
set.Add(values...)
}
return set
}
// Add adds the items (one or more) to the set.
// Note that insertion-order is not affected if an element is re-inserted into the set.
func (set *Set) Add(items ...interface{}) {
for _, item := range items {
if _, contains := set.table[item]; !contains {
set.table[item] = itemExists
set.ordering.Append(item)
}
}
}
// Remove removes the items (one or more) from the set.
// Slow operation, worst-case O(n^2).
func (set *Set) Remove(items ...interface{}) {
for _, item := range items {
if _, contains := set.table[item]; contains {
delete(set.table, item)
index := set.ordering.IndexOf(item)
set.ordering.Remove(index)
}
}
}
// Contains check if items (one or more) are present in the set.
// All items have to be present in the set for the method to return true.
// Returns true if no arguments are passed at all, i.e. set is always superset of empty set.
func (set *Set) Contains(items ...interface{}) bool {
for _, item := range items {
if _, contains := set.table[item]; !contains {
return false
}
}
return true
}
// Empty returns true if set does not contain any elements.
func (set *Set) Empty() bool {
return set.Size() == 0
}
// Size returns number of elements within the set.
func (set *Set) Size() int {
return set.ordering.Size()
}
// Clear clears all values in the set.
func (set *Set) Clear() {
set.table = make(map[interface{}]struct{})
set.ordering.Clear()
}
// Values returns all items in the set.
func (set *Set) Values() []interface{} {
values := make([]interface{}, set.Size())
it := set.Iterator()
for it.Next() {
values[it.Index()] = it.Value()
}
return values
}
// String returns a string representation of container
func (set *Set) String() string {
str := "LinkedHashSet\n"
items := []string{}
it := set.Iterator()
for it.Next() {
items = append(items, fmt.Sprintf("%v", it.Value()))
}
str += strings.Join(items, ", ")
return str
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/quant1x/gox.git
git@gitee.com:quant1x/gox.git
quant1x
gox
gox
v1.21.2

搜索帮助

344bd9b3 5694891 D2dac590 5694891