2016-06-27 02:21:09 +00:00
|
|
|
// 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.
|
2015-03-05 15:29:33 +00:00
|
|
|
|
2016-06-25 15:02:21 +00:00
|
|
|
// Package hashset implements a set backed by a hash table.
|
|
|
|
//
|
2015-03-05 15:29:33 +00:00
|
|
|
// Structure is not thread safe.
|
2016-06-25 15:02:21 +00:00
|
|
|
//
|
2015-03-05 15:29:33 +00:00
|
|
|
// References: http://en.wikipedia.org/wiki/Set_%28abstract_data_type%29
|
|
|
|
package hashset
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-03-05 15:58:35 +00:00
|
|
|
"github.com/emirpasic/gods/sets"
|
2015-03-05 15:29:33 +00:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2016-06-27 02:02:52 +00:00
|
|
|
func assertSetImplementation() {
|
2016-06-22 01:09:48 +00:00
|
|
|
var _ sets.Set = (*Set)(nil)
|
2015-03-05 15:58:35 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 19:52:16 +00:00
|
|
|
// Set holds elements in go's native map
|
2015-03-05 15:29:33 +00:00
|
|
|
type Set struct {
|
|
|
|
items map[interface{}]struct{}
|
|
|
|
}
|
|
|
|
|
|
|
|
var itemExists = struct{}{}
|
|
|
|
|
2016-06-24 19:52:16 +00:00
|
|
|
// New instantiates a new empty set
|
2015-03-05 15:29:33 +00:00
|
|
|
func New() *Set {
|
|
|
|
return &Set{items: make(map[interface{}]struct{})}
|
|
|
|
}
|
|
|
|
|
2016-06-24 19:52:16 +00:00
|
|
|
// Add adds the items (one or more) to the set.
|
2015-03-05 15:29:33 +00:00
|
|
|
func (set *Set) Add(items ...interface{}) {
|
|
|
|
for _, item := range items {
|
|
|
|
set.items[item] = itemExists
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-24 19:52:16 +00:00
|
|
|
// Remove removes the items (one or more) from the set.
|
2015-03-05 15:29:33 +00:00
|
|
|
func (set *Set) Remove(items ...interface{}) {
|
|
|
|
for _, item := range items {
|
|
|
|
delete(set.items, item)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-24 19:52:16 +00:00
|
|
|
// Contains check if items (one or more) are present in the set.
|
2015-03-05 15:29:33 +00:00
|
|
|
// 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.items[item]; !contains {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2016-06-24 19:52:16 +00:00
|
|
|
// Empty returns true if set does not contain any elements.
|
2015-03-05 15:29:33 +00:00
|
|
|
func (set *Set) Empty() bool {
|
|
|
|
return set.Size() == 0
|
|
|
|
}
|
|
|
|
|
2016-06-24 19:52:16 +00:00
|
|
|
// Size returns number of elements within the set.
|
2015-03-05 15:29:33 +00:00
|
|
|
func (set *Set) Size() int {
|
|
|
|
return len(set.items)
|
|
|
|
}
|
|
|
|
|
2016-06-24 19:52:16 +00:00
|
|
|
// Clear clears all values in the set.
|
2015-03-05 15:29:33 +00:00
|
|
|
func (set *Set) Clear() {
|
|
|
|
set.items = make(map[interface{}]struct{})
|
|
|
|
}
|
|
|
|
|
2016-06-24 19:52:16 +00:00
|
|
|
// Values returns all items in the set.
|
2015-03-05 15:29:33 +00:00
|
|
|
func (set *Set) Values() []interface{} {
|
|
|
|
values := make([]interface{}, set.Size())
|
|
|
|
count := 0
|
2016-06-24 16:29:35 +00:00
|
|
|
for item := range set.items {
|
2015-03-05 15:29:33 +00:00
|
|
|
values[count] = item
|
2016-06-24 19:52:16 +00:00
|
|
|
count++
|
2015-03-05 15:29:33 +00:00
|
|
|
}
|
|
|
|
return values
|
|
|
|
}
|
|
|
|
|
2016-06-24 19:52:16 +00:00
|
|
|
// String returns a string representation of container
|
2015-03-05 15:29:33 +00:00
|
|
|
func (set *Set) String() string {
|
|
|
|
str := "HashSet\n"
|
|
|
|
items := []string{}
|
2016-06-24 16:29:35 +00:00
|
|
|
for k := range set.items {
|
2015-03-05 15:29:33 +00:00
|
|
|
items = append(items, fmt.Sprintf("%v", k))
|
|
|
|
}
|
|
|
|
str += strings.Join(items, ", ")
|
|
|
|
return str
|
|
|
|
}
|