Documentation ¶
Overview ¶
*
- (*IntSet).UnionWith はワード単位のビット和算子である | を使って二つのビットの和集合を計算しています。
- セット操作に対応するメソッド IntersectWith, DifferenceWith, SymmetricDifference を実装しなさい。
- (二つの集合の対称差 (symmetric difference) は、どちらかの集合にはあるが、両方にはない要素を含む集合です。)
Index ¶
- type IntSet
- func (s *IntSet) Add(x int)
- func (s *IntSet) AddAll(xs ...int)
- func (s *IntSet) Clear()
- func (s *IntSet) Copy() *IntSet
- func (s *IntSet) DifferenceWith(t *IntSet)
- func (s *IntSet) Has(x int) bool
- func (s *IntSet) IntersectWith(t *IntSet)
- func (s *IntSet) Len() int
- func (s *IntSet) Remove(x int)
- func (s *IntSet) String() string
- func (s *IntSet) SymmetricDifference(t *IntSet)
- func (s *IntSet) UnionWith(t *IntSet)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IntSet ¶
type IntSet struct {
// contains filtered or unexported fields
}
func (*IntSet) DifferenceWith ¶
func (*IntSet) IntersectWith ¶
func (*IntSet) SymmetricDifference ¶
Click to show internal directories.
Click to hide internal directories.