gods/sets/treeset/treeset.go

109 lines
2.8 KiB
Go
Raw Normal View History

// 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 16:44:00 +00:00
// Package treeset implements a tree backed by a red-black tree.
//
2015-03-05 16:44:00 +00:00
// Structure is not thread safe.
//
// Reference: http://en.wikipedia.org/wiki/Set_%28abstract_data_type%29
2015-03-05 16:44:00 +00:00
package treeset
import (
"fmt"
"strings"
2015-03-05 16:44:00 +00:00
"github.com/emirpasic/gods/sets"
"github.com/emirpasic/gods/utils"
"github.com/spewspews/gods/trees"
rbt "github.com/spewspews/gods/trees/redblacktree"
2015-03-05 16:44:00 +00:00
)
func assertSetImplementation() {
var _ sets.Set = (*Set)(nil)
2015-03-05 16:44:00 +00:00
}
2016-06-24 19:52:16 +00:00
// Set holds elements in a red-black tree
2015-03-05 16:44:00 +00:00
type Set struct {
tree trees.Tree
2015-03-05 16:44:00 +00:00
}
var itemExists = struct{}{}
2016-06-24 19:52:16 +00:00
// NewWith instantiates a new empty set with the custom comparator.
2015-03-05 16:44:00 +00:00
func NewWith(comparator utils.Comparator) *Set {
return &Set{tree: rbt.NewWith(comparator)}
}
2016-06-24 19:52:16 +00:00
// NewWithIntComparator instantiates a new empty set with the IntComparator, i.e. keys are of type int.
2015-03-05 16:44:00 +00:00
func NewWithIntComparator() *Set {
return &Set{tree: rbt.NewWithIntComparator()}
}
2016-06-24 19:52:16 +00:00
// NewWithStringComparator instantiates a new empty set with the StringComparator, i.e. keys are of type string.
2015-03-05 16:44:00 +00:00
func NewWithStringComparator() *Set {
return &Set{tree: rbt.NewWithStringComparator()}
}
// NewWithTree instantiates a new empty set with given tree
func NewWithTree(tree trees.Tree) (set *Set) {
return &Set{tree: tree}
}
2016-06-24 19:52:16 +00:00
// Add adds the items (one or more) to the set.
2015-03-05 16:44:00 +00:00
func (set *Set) Add(items ...interface{}) {
for _, item := range items {
set.tree.Put(item, itemExists)
}
}
2016-06-24 19:52:16 +00:00
// Remove removes the items (one or more) from the set.
2015-03-05 16:44:00 +00:00
func (set *Set) Remove(items ...interface{}) {
for _, item := range items {
set.tree.Remove(item)
}
}
2016-06-24 19:52:16 +00:00
// Contains checks weather items (one or more) are present in the set.
2015-03-05 16:44:00 +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.tree.Get(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 16:44:00 +00:00
func (set *Set) Empty() bool {
return set.tree.Size() == 0
}
2016-06-24 19:52:16 +00:00
// Size returns number of elements within the set.
2015-03-05 16:44:00 +00:00
func (set *Set) Size() int {
return set.tree.Size()
}
2016-06-24 19:52:16 +00:00
// Clear clears all values in the set.
2015-03-05 16:44:00 +00:00
func (set *Set) Clear() {
set.tree.Clear()
}
2016-06-24 19:52:16 +00:00
// Values returns all items in the set.
2015-03-05 16:44:00 +00:00
func (set *Set) Values() []interface{} {
return set.tree.Keys()
}
2016-06-24 19:52:16 +00:00
// String returns a string representation of container
2015-03-05 16:44:00 +00:00
func (set *Set) String() string {
str := "TreeSet\n"
items := []string{}
for _, v := range set.tree.Keys() {
items = append(items, fmt.Sprintf("%v", v))
}
str += strings.Join(items, ", ")
return str
}