2002-08-30 17:47:49 +04:00
|
|
|
#!/usr/bin/env ruby
|
2003-09-19 10:53:02 +04:00
|
|
|
#--
|
|
|
|
# set.rb - defines the Set class
|
|
|
|
#++
|
2002-08-30 17:47:49 +04:00
|
|
|
# Copyright (c) 2002 Akinori MUSHA <knu@iDaemons.org>
|
|
|
|
#
|
2003-09-19 10:53:02 +04:00
|
|
|
# Documentation by Akinori MUSHA and Gavin Sinclair.
|
2002-08-30 17:47:49 +04:00
|
|
|
#
|
2003-09-19 10:53:02 +04:00
|
|
|
# All rights reserved. You can redistribute and/or modify it under the same
|
|
|
|
# terms as Ruby.
|
2002-08-30 17:47:49 +04:00
|
|
|
#
|
2003-09-19 10:53:02 +04:00
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
# == Overview
|
2002-12-24 08:29:04 +03:00
|
|
|
#
|
2003-10-17 17:16:03 +04:00
|
|
|
# This library provides the Set class, which deals with a collection
|
|
|
|
# of unordered values with no duplicates. It is a hybrid of Array's
|
|
|
|
# intuitive inter-operation facilities and Hash's fast lookup. If you
|
|
|
|
# need to keep values ordered, use the SortedSet class.
|
2002-12-24 08:29:04 +03:00
|
|
|
#
|
2003-10-17 17:16:03 +04:00
|
|
|
# The method +to_set+ is added to Enumerable for convenience.
|
2002-12-24 08:29:04 +03:00
|
|
|
#
|
2003-09-19 10:53:02 +04:00
|
|
|
# See the Set class for an example of usage.
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2003-09-19 10:53:02 +04:00
|
|
|
|
|
|
|
#
|
2002-12-24 08:29:04 +03:00
|
|
|
# Set implements a collection of unordered values with no duplicates.
|
|
|
|
# This is a hybrid of Array's intuitive inter-operation facilities and
|
|
|
|
# Hash's fast lookup.
|
|
|
|
#
|
2003-09-19 10:53:02 +04:00
|
|
|
# Several methods accept any Enumerable object (implementing +each+)
|
|
|
|
# for greater flexibility: new, replace, merge, subtract, |, &, -, ^.
|
|
|
|
#
|
2002-12-24 08:29:04 +03:00
|
|
|
# The equality of each couple of elements is determined according to
|
|
|
|
# Object#eql? and Object#hash, since Set uses Hash as storage.
|
2003-09-19 10:53:02 +04:00
|
|
|
#
|
|
|
|
# Finally, if you are using class Set, you can also use Enumerable#to_set
|
|
|
|
# for convenience.
|
|
|
|
#
|
|
|
|
# == Example
|
|
|
|
#
|
|
|
|
# require 'set'
|
|
|
|
# s1 = Set.new [1, 2] # -> #<Set: {1, 2}>
|
|
|
|
# s2 = [1, 2].to_set # -> #<Set: {1, 2}>
|
|
|
|
# s1 == s2 # -> true
|
|
|
|
# s1.add("foo") # -> #<Set: {1, 2, "foo"}>
|
|
|
|
# s1.merge([2, 6]) # -> #<Set: {6, 1, 2, "foo"}>
|
|
|
|
# s1.subset? s2 # -> false
|
|
|
|
# s2.subset? s1 # -> true
|
|
|
|
#
|
2002-08-30 17:47:49 +04:00
|
|
|
class Set
|
|
|
|
include Enumerable
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Creates a new set containing the given objects.
|
2002-08-30 17:47:49 +04:00
|
|
|
def self.[](*ary)
|
|
|
|
new(ary)
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Creates a new set containing the elements of the given enumerable
|
|
|
|
# object.
|
|
|
|
#
|
|
|
|
# If a block is given, the elements of enum are preprocessed by the
|
|
|
|
# given block.
|
2003-01-21 19:38:42 +03:00
|
|
|
def initialize(enum = nil, &block) # :yields: o
|
2002-09-20 14:46:52 +04:00
|
|
|
@hash ||= Hash.new
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:48:14 +04:00
|
|
|
enum.nil? and return
|
|
|
|
|
2002-09-20 14:46:52 +04:00
|
|
|
if block
|
|
|
|
enum.each { |o| add(block[o]) }
|
|
|
|
else
|
|
|
|
merge(enum)
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
|
2004-10-23 10:53:11 +04:00
|
|
|
# Copy internal hash.
|
|
|
|
def initialize_copy(orig)
|
|
|
|
@hash = orig.instance_eval{@hash}.dup
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Returns the number of elements.
|
2002-08-30 17:47:49 +04:00
|
|
|
def size
|
|
|
|
@hash.size
|
|
|
|
end
|
|
|
|
alias length size
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Returns true if the set contains no elements.
|
2002-08-30 17:47:49 +04:00
|
|
|
def empty?
|
|
|
|
@hash.empty?
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Removes all elements and returns self.
|
2002-08-30 17:47:49 +04:00
|
|
|
def clear
|
|
|
|
@hash.clear
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Replaces the contents of the set with the contents of the given
|
|
|
|
# enumerable object and returns self.
|
2002-08-30 17:47:49 +04:00
|
|
|
def replace(enum)
|
2002-10-02 20:45:35 +04:00
|
|
|
if enum.class == self.class
|
2002-09-20 14:46:52 +04:00
|
|
|
@hash.replace(enum.instance_eval { @hash })
|
|
|
|
else
|
|
|
|
clear
|
|
|
|
enum.each { |o| add(o) }
|
|
|
|
end
|
|
|
|
|
2002-08-30 17:47:49 +04:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2003-01-21 18:09:12 +03:00
|
|
|
# Converts the set to an array. The order of elements is uncertain.
|
2002-08-30 17:47:49 +04:00
|
|
|
def to_a
|
|
|
|
@hash.keys
|
|
|
|
end
|
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def flatten_merge(set, seen = Set.new)
|
|
|
|
set.each { |e|
|
|
|
|
if e.is_a?(Set)
|
2002-11-07 22:18:16 +03:00
|
|
|
if seen.include?(e_id = e.object_id)
|
2002-09-07 14:32:23 +04:00
|
|
|
raise ArgumentError, "tried to flatten recursive Set"
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
seen.add(e_id)
|
|
|
|
flatten_merge(e, seen)
|
|
|
|
seen.delete(e_id)
|
2002-08-30 17:47:49 +04:00
|
|
|
else
|
2002-09-07 14:32:23 +04:00
|
|
|
add(e)
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
}
|
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
self
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
2002-09-07 14:32:23 +04:00
|
|
|
protected :flatten_merge
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Returns a new set that is a copy of the set, flattening each
|
|
|
|
# containing set recursively.
|
2002-08-30 17:47:49 +04:00
|
|
|
def flatten
|
2002-10-02 20:45:35 +04:00
|
|
|
self.class.new.flatten_merge(self)
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Equivalent to Set#flatten, but replaces the receiver with the
|
|
|
|
# result in place. Returns nil if no modifications were made.
|
2002-08-30 17:47:49 +04:00
|
|
|
def flatten!
|
2002-09-07 14:32:23 +04:00
|
|
|
if detect { |e| e.is_a?(Set) }
|
|
|
|
replace(flatten())
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Returns true if the set contains the given object.
|
2002-08-30 17:47:49 +04:00
|
|
|
def include?(o)
|
|
|
|
@hash.include?(o)
|
|
|
|
end
|
|
|
|
alias member? include?
|
|
|
|
|
2003-01-21 18:15:26 +03:00
|
|
|
# Returns true if the set is a superset of the given set.
|
2002-11-09 21:52:04 +03:00
|
|
|
def superset?(set)
|
|
|
|
set.is_a?(Set) or raise ArgumentError, "value must be a set"
|
|
|
|
return false if size < set.size
|
|
|
|
set.all? { |o| include?(o) }
|
|
|
|
end
|
|
|
|
|
2003-01-21 18:15:26 +03:00
|
|
|
# Returns true if the set is a proper superset of the given set.
|
2002-11-09 21:52:04 +03:00
|
|
|
def proper_superset?(set)
|
|
|
|
set.is_a?(Set) or raise ArgumentError, "value must be a set"
|
|
|
|
return false if size <= set.size
|
|
|
|
set.all? { |o| include?(o) }
|
|
|
|
end
|
|
|
|
|
2003-01-21 18:15:26 +03:00
|
|
|
# Returns true if the set is a subset of the given set.
|
2002-11-09 21:52:04 +03:00
|
|
|
def subset?(set)
|
|
|
|
set.is_a?(Set) or raise ArgumentError, "value must be a set"
|
|
|
|
return false if set.size < size
|
|
|
|
all? { |o| set.include?(o) }
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Returns true if the set is a proper subset of the given set.
|
2002-11-09 21:52:04 +03:00
|
|
|
def proper_subset?(set)
|
|
|
|
set.is_a?(Set) or raise ArgumentError, "value must be a set"
|
|
|
|
return false if set.size <= size
|
|
|
|
all? { |o| set.include?(o) }
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Calls the given block once for each element in the set, passing
|
|
|
|
# the element as parameter.
|
2002-08-30 17:47:49 +04:00
|
|
|
def each
|
2002-09-20 14:46:52 +04:00
|
|
|
@hash.each_key { |o| yield(o) }
|
2003-07-27 22:10:54 +04:00
|
|
|
self
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
|
2003-09-19 10:53:02 +04:00
|
|
|
# Adds the given object to the set and returns self. Use +merge+ to
|
|
|
|
# add several elements at once.
|
2002-08-30 17:47:49 +04:00
|
|
|
def add(o)
|
2005-06-25 10:22:05 +04:00
|
|
|
@hash[o] = true
|
2002-08-30 17:47:49 +04:00
|
|
|
self
|
|
|
|
end
|
|
|
|
alias << add
|
|
|
|
|
2003-09-19 05:51:17 +04:00
|
|
|
# Adds the given object to the set and returns self. If the
|
2002-12-24 08:29:04 +03:00
|
|
|
# object is already in the set, returns nil.
|
2002-09-20 14:46:52 +04:00
|
|
|
def add?(o)
|
|
|
|
if include?(o)
|
|
|
|
nil
|
|
|
|
else
|
|
|
|
add(o)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-09-19 11:47:46 +04:00
|
|
|
# Deletes the given object from the set and returns self. Use +subtract+ to
|
|
|
|
# delete several items at once.
|
2002-08-30 17:47:49 +04:00
|
|
|
def delete(o)
|
2002-09-20 14:46:52 +04:00
|
|
|
@hash.delete(o)
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Deletes the given object from the set and returns self. If the
|
|
|
|
# object is not in the set, returns nil.
|
2002-09-20 14:46:52 +04:00
|
|
|
def delete?(o)
|
|
|
|
if include?(o)
|
|
|
|
delete(o)
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Deletes every element of the set for which block evaluates to
|
|
|
|
# true, and returns self.
|
2002-08-30 17:47:49 +04:00
|
|
|
def delete_if
|
2002-09-20 14:46:52 +04:00
|
|
|
@hash.delete_if { |o,| yield(o) }
|
2002-08-30 17:47:49 +04:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Do collect() destructively.
|
2002-09-20 14:46:52 +04:00
|
|
|
def collect!
|
2002-10-02 20:45:35 +04:00
|
|
|
set = self.class.new
|
2002-09-20 14:46:52 +04:00
|
|
|
each { |o| set << yield(o) }
|
|
|
|
replace(set)
|
|
|
|
end
|
|
|
|
alias map! collect!
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Equivalent to Set#delete_if, but returns nil if no changes were
|
|
|
|
# made.
|
2002-08-30 17:47:49 +04:00
|
|
|
def reject!
|
2002-09-20 14:46:52 +04:00
|
|
|
n = size
|
|
|
|
delete_if { |o| yield(o) }
|
|
|
|
size == n ? nil : self
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Merges the elements of the given enumerable object to the set and
|
|
|
|
# returns self.
|
2002-08-30 17:47:49 +04:00
|
|
|
def merge(enum)
|
2005-06-25 10:22:05 +04:00
|
|
|
if enum.is_a?(Set)
|
2002-09-20 14:46:52 +04:00
|
|
|
@hash.update(enum.instance_eval { @hash })
|
|
|
|
else
|
|
|
|
enum.each { |o| add(o) }
|
|
|
|
end
|
|
|
|
|
2002-08-30 17:47:49 +04:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Deletes every element that appears in the given enumerable object
|
|
|
|
# and returns self.
|
2002-08-30 17:47:49 +04:00
|
|
|
def subtract(enum)
|
|
|
|
enum.each { |o| delete(o) }
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Returns a new set built by merging the set and the elements of the
|
|
|
|
# given enumerable object.
|
2002-11-09 21:52:04 +03:00
|
|
|
def |(enum)
|
2002-09-20 14:46:52 +04:00
|
|
|
dup.merge(enum)
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
2002-11-09 21:52:04 +03:00
|
|
|
alias + | ##
|
|
|
|
alias union | ##
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Returns a new set built by duplicating the set, removing every
|
2003-09-19 11:47:46 +04:00
|
|
|
# element that appears in the given enumerable object.
|
2002-08-30 17:47:49 +04:00
|
|
|
def -(enum)
|
2002-09-20 14:46:52 +04:00
|
|
|
dup.subtract(enum)
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
2002-11-09 21:52:04 +03:00
|
|
|
alias difference - ##
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Returns a new array containing elements common to the set and the
|
|
|
|
# given enumerable object.
|
2002-08-30 17:47:49 +04:00
|
|
|
def &(enum)
|
2002-10-02 20:45:35 +04:00
|
|
|
n = self.class.new
|
2005-06-25 10:22:05 +04:00
|
|
|
enum.each { |o| n.add(o) if include?(o) }
|
2002-08-30 17:47:49 +04:00
|
|
|
n
|
|
|
|
end
|
2002-11-09 21:52:04 +03:00
|
|
|
alias intersection & ##
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Returns a new array containing elements exclusive between the set
|
|
|
|
# and the given enumerable object. (set ^ enum) is equivalent to
|
|
|
|
# ((set | enum) - (set & enum)).
|
2002-08-30 17:47:49 +04:00
|
|
|
def ^(enum)
|
|
|
|
n = dup
|
|
|
|
enum.each { |o| if n.include?(o) then n.delete(o) else n.add(o) end }
|
|
|
|
n
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Returns true if two sets are equal. The equality of each couple
|
|
|
|
# of elements is defined according to Object#eql?.
|
2002-08-30 17:47:49 +04:00
|
|
|
def ==(set)
|
|
|
|
equal?(set) and return true
|
|
|
|
|
2002-09-04 11:15:17 +04:00
|
|
|
set.is_a?(Set) && size == set.size or return false
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2005-06-25 10:22:05 +04:00
|
|
|
hash = @hash.dup
|
|
|
|
set.all? { |o| hash.include?(o) }
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
def hash # :nodoc:
|
2002-08-30 17:47:49 +04:00
|
|
|
@hash.hash
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
def eql?(o) # :nodoc:
|
2005-06-25 10:22:05 +04:00
|
|
|
return false unless o.is_a?(Set)
|
|
|
|
@hash.eql?(o.instance_eval{@hash})
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Classifies the set by the return value of the given block and
|
|
|
|
# returns a hash of {value => set of elements} pairs. The block is
|
|
|
|
# called once for each element of the set, passing the element as
|
|
|
|
# parameter.
|
|
|
|
#
|
|
|
|
# e.g.:
|
|
|
|
#
|
|
|
|
# require 'set'
|
|
|
|
# files = Set.new(Dir.glob("*.rb"))
|
|
|
|
# hash = files.classify { |f| File.mtime(f).year }
|
2003-01-21 19:38:42 +03:00
|
|
|
# p hash # => {2000=>#<Set: {"a.rb", "b.rb"}>,
|
|
|
|
# # 2001=>#<Set: {"c.rb", "d.rb", "e.rb"}>,
|
|
|
|
# # 2002=>#<Set: {"f.rb"}>}
|
|
|
|
def classify # :yields: o
|
2002-08-30 17:47:49 +04:00
|
|
|
h = {}
|
|
|
|
|
|
|
|
each { |i|
|
|
|
|
x = yield(i)
|
2002-10-02 20:45:35 +04:00
|
|
|
(h[x] ||= self.class.new).add(i)
|
2002-08-30 17:47:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
h
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Divides the set into a set of subsets according to the commonality
|
|
|
|
# defined by the given block.
|
|
|
|
#
|
|
|
|
# If the arity of the block is 2, elements o1 and o2 are in common
|
|
|
|
# if block.call(o1, o2) is true. Otherwise, elements o1 and o2 are
|
|
|
|
# in common if block.call(o1) == block.call(o2).
|
|
|
|
#
|
|
|
|
# e.g.:
|
|
|
|
#
|
|
|
|
# require 'set'
|
|
|
|
# numbers = Set[1, 3, 4, 6, 9, 10, 11]
|
|
|
|
# set = numbers.divide { |i,j| (i - j).abs == 1 }
|
2003-01-21 19:38:42 +03:00
|
|
|
# p set # => #<Set: {#<Set: {1}>,
|
|
|
|
# # #<Set: {11, 9, 10}>,
|
|
|
|
# # #<Set: {3, 4}>,
|
|
|
|
# # #<Set: {6}>}>
|
2002-08-30 17:47:49 +04:00
|
|
|
def divide(&func)
|
|
|
|
if func.arity == 2
|
|
|
|
require 'tsort'
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
class << dig = {} # :nodoc:
|
2002-08-30 17:47:49 +04:00
|
|
|
include TSort
|
|
|
|
|
|
|
|
alias tsort_each_node each_key
|
|
|
|
def tsort_each_child(node, &block)
|
|
|
|
fetch(node).each(&block)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
each { |u|
|
|
|
|
dig[u] = a = []
|
|
|
|
each{ |v| func.call(u, v) and a << v }
|
|
|
|
}
|
|
|
|
|
2002-09-20 14:46:52 +04:00
|
|
|
set = Set.new()
|
2002-08-30 17:47:49 +04:00
|
|
|
dig.each_strongly_connected_component { |css|
|
2002-10-02 20:45:35 +04:00
|
|
|
set.add(self.class.new(css))
|
2002-08-30 17:47:49 +04:00
|
|
|
}
|
|
|
|
set
|
|
|
|
else
|
2002-09-20 14:46:52 +04:00
|
|
|
Set.new(classify(&func).values)
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-09-19 10:53:02 +04:00
|
|
|
InspectKey = :__inspect_key__ # :nodoc:
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
# Returns a string containing a human-readable representation of the
|
|
|
|
# set. ("#<Set: {element1, element2, ...}>")
|
2002-08-30 17:47:49 +04:00
|
|
|
def inspect
|
|
|
|
ids = (Thread.current[InspectKey] ||= [])
|
|
|
|
|
2002-11-09 21:52:04 +03:00
|
|
|
if ids.include?(object_id)
|
2002-10-02 20:45:35 +04:00
|
|
|
return sprintf('#<%s: {...}>', self.class.name)
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
begin
|
2002-11-09 21:52:04 +03:00
|
|
|
ids << object_id
|
2002-10-02 20:45:35 +04:00
|
|
|
return sprintf('#<%s: {%s}>', self.class, to_a.inspect[1..-2])
|
2002-08-30 17:47:49 +04:00
|
|
|
ensure
|
|
|
|
ids.pop
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
def pretty_print(pp) # :nodoc:
|
2002-10-02 20:45:35 +04:00
|
|
|
pp.text sprintf('#<%s: {', self.class.name)
|
2002-08-30 17:47:49 +04:00
|
|
|
pp.nest(1) {
|
2004-02-05 17:59:46 +03:00
|
|
|
pp.seplist(self) { |o|
|
2002-08-30 17:47:49 +04:00
|
|
|
pp.pp o
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pp.text "}>"
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
def pretty_print_cycle(pp) # :nodoc:
|
2002-10-02 20:45:35 +04:00
|
|
|
pp.text sprintf('#<%s: {%s}>', self.class.name, empty? ? '' : '...')
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-09-19 10:53:02 +04:00
|
|
|
# SortedSet implements a set which elements are sorted in order. See Set.
|
2002-09-20 14:46:52 +04:00
|
|
|
class SortedSet < Set
|
|
|
|
@@setup = false
|
|
|
|
|
|
|
|
class << self
|
2002-12-24 08:29:04 +03:00
|
|
|
def [](*ary) # :nodoc:
|
2002-09-20 14:46:52 +04:00
|
|
|
new(ary)
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
def setup # :nodoc:
|
2002-09-20 14:46:52 +04:00
|
|
|
@@setup and return
|
|
|
|
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
module_eval {
|
|
|
|
# a hack to shut up warning
|
|
|
|
alias old_init initialize
|
|
|
|
remove_method :old_init
|
|
|
|
}
|
2002-09-20 14:46:52 +04:00
|
|
|
begin
|
|
|
|
require 'rbtree'
|
|
|
|
|
|
|
|
module_eval %{
|
|
|
|
def initialize(*args, &block)
|
|
|
|
@hash = RBTree.new
|
|
|
|
super
|
|
|
|
end
|
|
|
|
}
|
|
|
|
rescue LoadError
|
|
|
|
module_eval %{
|
|
|
|
def initialize(*args, &block)
|
|
|
|
@keys = nil
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def clear
|
|
|
|
@keys = nil
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def replace(enum)
|
|
|
|
@keys = nil
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def add(o)
|
|
|
|
@keys = nil
|
2005-06-25 10:22:05 +04:00
|
|
|
@hash[o] = true
|
2002-09-20 14:46:52 +04:00
|
|
|
self
|
|
|
|
end
|
|
|
|
alias << add
|
|
|
|
|
|
|
|
def delete(o)
|
|
|
|
@keys = nil
|
|
|
|
@hash.delete(o)
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_if
|
|
|
|
n = @hash.size
|
|
|
|
@hash.delete_if { |o,| yield(o) }
|
|
|
|
@keys = nil if @hash.size != n
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def merge(enum)
|
|
|
|
@keys = nil
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def each
|
|
|
|
to_a.each { |o| yield(o) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_a
|
|
|
|
(@keys = @hash.keys).sort! unless @keys
|
|
|
|
@keys
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
@@setup = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2002-12-24 08:29:04 +03:00
|
|
|
def initialize(*args, &block) # :nodoc:
|
2002-09-20 14:46:52 +04:00
|
|
|
SortedSet.setup
|
|
|
|
initialize(*args, &block)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module Enumerable
|
2002-12-24 08:29:04 +03:00
|
|
|
# Makes a set from the enumerable object with given arguments.
|
2005-06-30 10:20:09 +04:00
|
|
|
# Needs to +require "set"+ to use this method.
|
2002-09-20 14:46:52 +04:00
|
|
|
def to_set(klass = Set, *args, &block)
|
|
|
|
klass.new(self, *args, &block)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# =begin
|
|
|
|
# == RestricedSet class
|
|
|
|
# RestricedSet implements a set with restrictions defined by a given
|
|
|
|
# block.
|
|
|
|
#
|
|
|
|
# === Super class
|
|
|
|
# Set
|
|
|
|
#
|
|
|
|
# === Class Methods
|
|
|
|
# --- RestricedSet::new(enum = nil) { |o| ... }
|
|
|
|
# --- RestricedSet::new(enum = nil) { |rset, o| ... }
|
|
|
|
# Creates a new restricted set containing the elements of the given
|
|
|
|
# enumerable object. Restrictions are defined by the given block.
|
|
|
|
#
|
|
|
|
# If the block's arity is 2, it is called with the RestrictedSet
|
|
|
|
# itself and an object to see if the object is allowed to be put in
|
|
|
|
# the set.
|
|
|
|
#
|
|
|
|
# Otherwise, the block is called with an object to see if the object
|
|
|
|
# is allowed to be put in the set.
|
|
|
|
#
|
|
|
|
# === Instance Methods
|
|
|
|
# --- restriction_proc
|
|
|
|
# Returns the restriction procedure of the set.
|
|
|
|
#
|
|
|
|
# =end
|
|
|
|
#
|
|
|
|
# class RestricedSet < Set
|
|
|
|
# def initialize(*args, &block)
|
|
|
|
# @proc = block or raise ArgumentError, "missing a block"
|
|
|
|
#
|
|
|
|
# if @proc.arity == 2
|
|
|
|
# instance_eval %{
|
|
|
|
# def add(o)
|
2005-06-25 10:22:05 +04:00
|
|
|
# @hash[o] = true if @proc.call(self, o)
|
2002-09-20 14:46:52 +04:00
|
|
|
# self
|
|
|
|
# end
|
|
|
|
# alias << add
|
|
|
|
#
|
|
|
|
# def add?(o)
|
|
|
|
# if include?(o) || !@proc.call(self, o)
|
|
|
|
# nil
|
|
|
|
# else
|
2005-06-25 10:22:05 +04:00
|
|
|
# @hash[o] = true
|
2002-09-20 14:46:52 +04:00
|
|
|
# self
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# def replace(enum)
|
|
|
|
# clear
|
|
|
|
# enum.each { |o| add(o) }
|
|
|
|
#
|
|
|
|
# self
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# def merge(enum)
|
|
|
|
# enum.each { |o| add(o) }
|
|
|
|
#
|
|
|
|
# self
|
|
|
|
# end
|
|
|
|
# }
|
|
|
|
# else
|
|
|
|
# instance_eval %{
|
|
|
|
# def add(o)
|
2005-06-25 10:22:05 +04:00
|
|
|
# if @proc.call(o)
|
|
|
|
# @hash[o] = true
|
|
|
|
# end
|
2002-09-20 14:46:52 +04:00
|
|
|
# self
|
|
|
|
# end
|
|
|
|
# alias << add
|
|
|
|
#
|
|
|
|
# def add?(o)
|
|
|
|
# if include?(o) || !@proc.call(o)
|
|
|
|
# nil
|
|
|
|
# else
|
2005-06-25 10:22:05 +04:00
|
|
|
# @hash[o] = true
|
2002-09-20 14:46:52 +04:00
|
|
|
# self
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# }
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# super(*args)
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# def restriction_proc
|
|
|
|
# @proc
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
|
2002-08-30 17:47:49 +04:00
|
|
|
if $0 == __FILE__
|
2002-12-07 12:11:53 +03:00
|
|
|
eval DATA.read, nil, $0, __LINE__+4
|
2002-09-07 14:32:23 +04:00
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
__END__
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
require 'test/unit'
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
class TC_Set < Test::Unit::TestCase
|
|
|
|
def test_aref
|
|
|
|
assert_nothing_raised {
|
|
|
|
Set[]
|
|
|
|
Set[nil]
|
|
|
|
Set[1,2,3]
|
|
|
|
}
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_equal(0, Set[].size)
|
|
|
|
assert_equal(1, Set[nil].size)
|
|
|
|
assert_equal(1, Set[[]].size)
|
|
|
|
assert_equal(1, Set[[nil]].size)
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
set = Set[2,4,6,4]
|
|
|
|
assert_equal(Set.new([2,4,6]), set)
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_s_new
|
|
|
|
assert_nothing_raised {
|
|
|
|
Set.new()
|
|
|
|
Set.new(nil)
|
|
|
|
Set.new([])
|
|
|
|
Set.new([1,2])
|
|
|
|
Set.new('a'..'c')
|
|
|
|
Set.new('XYZ')
|
|
|
|
}
|
2005-07-04 14:31:44 +04:00
|
|
|
assert_raises(NoMethodError) {
|
2002-09-07 14:48:14 +04:00
|
|
|
Set.new(false)
|
|
|
|
}
|
2005-07-04 14:31:44 +04:00
|
|
|
assert_raises(NoMethodError) {
|
2002-09-07 14:32:23 +04:00
|
|
|
Set.new(1)
|
|
|
|
}
|
|
|
|
assert_raises(ArgumentError) {
|
|
|
|
Set.new(1,2)
|
|
|
|
}
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_equal(0, Set.new().size)
|
|
|
|
assert_equal(0, Set.new(nil).size)
|
|
|
|
assert_equal(0, Set.new([]).size)
|
|
|
|
assert_equal(1, Set.new([nil]).size)
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
ary = [2,4,6,4]
|
|
|
|
set = Set.new(ary)
|
|
|
|
ary.clear
|
|
|
|
assert_equal(false, set.empty?)
|
|
|
|
assert_equal(3, set.size)
|
2002-09-20 14:46:52 +04:00
|
|
|
|
|
|
|
ary = [1,2,3]
|
|
|
|
|
|
|
|
s = Set.new(ary) { |o| o * 2 }
|
|
|
|
assert_equal([2,4,6], s.sort)
|
2002-09-07 14:32:23 +04:00
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2004-10-23 10:53:11 +04:00
|
|
|
def test_clone
|
|
|
|
set1 = Set.new
|
|
|
|
set2 = set1.clone
|
|
|
|
set1 << 'abc'
|
|
|
|
assert_equal(Set.new, set2)
|
|
|
|
end
|
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_dup
|
|
|
|
set1 = Set[1,2]
|
|
|
|
set2 = set1.dup
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_not_same(set1, set2)
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_equal(set1, set2)
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
set1.add(3)
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_not_equal(set1, set2)
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_size
|
|
|
|
assert_equal(0, Set[].size)
|
|
|
|
assert_equal(2, Set[1,2].size)
|
|
|
|
assert_equal(2, Set[1,2,1].size)
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_empty?
|
|
|
|
assert_equal(true, Set[].empty?)
|
|
|
|
assert_equal(false, Set[1, 2].empty?)
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_clear
|
|
|
|
set = Set[1,2]
|
|
|
|
ret = set.clear
|
|
|
|
|
|
|
|
assert_same(set, ret)
|
|
|
|
assert_equal(true, set.empty?)
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_replace
|
|
|
|
set = Set[1,2]
|
|
|
|
ret = set.replace('a'..'c')
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_same(set, ret)
|
|
|
|
assert_equal(Set['a','b','c'], set)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_to_a
|
|
|
|
set = Set[1,2,3,2]
|
|
|
|
ary = set.to_a
|
|
|
|
|
|
|
|
assert_equal([1,2,3], ary.sort)
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_flatten
|
|
|
|
# test1
|
|
|
|
set1 = Set[
|
|
|
|
1,
|
|
|
|
Set[
|
|
|
|
5,
|
|
|
|
Set[7,
|
|
|
|
Set[0]
|
2002-08-30 17:47:49 +04:00
|
|
|
],
|
2002-09-07 14:32:23 +04:00
|
|
|
Set[6,2],
|
|
|
|
1
|
|
|
|
],
|
|
|
|
3,
|
|
|
|
Set[3,4]
|
|
|
|
]
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
set2 = set1.flatten
|
|
|
|
set3 = Set.new(0..7)
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_not_same(set2, set1)
|
|
|
|
assert_equal(set3, set2)
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
# test2; destructive
|
|
|
|
orig_set1 = set1
|
|
|
|
set1.flatten!
|
|
|
|
|
|
|
|
assert_same(orig_set1, set1)
|
|
|
|
assert_equal(set3, set1)
|
|
|
|
|
* dln.c, io.c, pack.c, lib/benchmark.rb, lib/cgi.rb, lib/csv.rb,
lib/date.rb, lib/ftools.rb, lib/getoptlong.rb, lib/logger.rb,
lib/matrix.rb, lib/monitor.rb, lib/set.rb, lib/thwait.rb,
lib/timeout.rb, lib/yaml.rb, lib/drb/drb.rb, lib/irb/workspace.rb,
lib/net/ftp.rb, lib/net/http.rb, lib/net/imap.rb, lib/net/pop.rb,
lib/net/telnet.rb, lib/racc/parser.rb, lib/rinda/rinda.rb,
lib/rinda/tuplespace.rb, lib/shell/command-processor.rb,
lib/soap/rpc/soaplet.rb, lib/test/unit/testcase.rb,
lib/test/unit/testsuite.rb: typo fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-04-19 03:19:47 +04:00
|
|
|
# test3; multiple occurrences of a set in an set
|
2002-09-07 14:32:23 +04:00
|
|
|
set1 = Set[1, 2]
|
|
|
|
set2 = Set[set1, Set[set1, 4], 3]
|
|
|
|
|
|
|
|
assert_nothing_raised {
|
|
|
|
set2.flatten!
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal(Set.new(1..4), set2)
|
|
|
|
|
|
|
|
# test4; recursion
|
|
|
|
set2 = Set[]
|
|
|
|
set1 = Set[1, set2]
|
|
|
|
set2.add(set1)
|
|
|
|
|
|
|
|
assert_raises(ArgumentError) {
|
2002-08-30 17:47:49 +04:00
|
|
|
set1.flatten!
|
2002-09-07 14:32:23 +04:00
|
|
|
}
|
2002-09-07 14:48:14 +04:00
|
|
|
|
* dln.c, io.c, pack.c, lib/benchmark.rb, lib/cgi.rb, lib/csv.rb,
lib/date.rb, lib/ftools.rb, lib/getoptlong.rb, lib/logger.rb,
lib/matrix.rb, lib/monitor.rb, lib/set.rb, lib/thwait.rb,
lib/timeout.rb, lib/yaml.rb, lib/drb/drb.rb, lib/irb/workspace.rb,
lib/net/ftp.rb, lib/net/http.rb, lib/net/imap.rb, lib/net/pop.rb,
lib/net/telnet.rb, lib/racc/parser.rb, lib/rinda/rinda.rb,
lib/rinda/tuplespace.rb, lib/shell/command-processor.rb,
lib/soap/rpc/soaplet.rb, lib/test/unit/testcase.rb,
lib/test/unit/testsuite.rb: typo fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-04-19 03:19:47 +04:00
|
|
|
# test5; miscellaneous
|
2002-09-07 14:48:14 +04:00
|
|
|
empty = Set[]
|
|
|
|
set = Set[Set[empty, "a"],Set[empty, "b"]]
|
|
|
|
|
|
|
|
assert_nothing_raised {
|
|
|
|
set.flatten
|
|
|
|
}
|
|
|
|
|
|
|
|
set1 = empty.merge(Set["no_more", set])
|
|
|
|
|
|
|
|
assert_nil(Set.new(0..31).flatten!)
|
|
|
|
|
|
|
|
x = Set[Set[],Set[1,2]].flatten!
|
|
|
|
y = Set[1,2]
|
|
|
|
|
|
|
|
assert_equal(x, y)
|
2002-09-07 14:32:23 +04:00
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_include?
|
|
|
|
set = Set[1,2,3]
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_equal(true, set.include?(1))
|
|
|
|
assert_equal(true, set.include?(2))
|
|
|
|
assert_equal(true, set.include?(3))
|
|
|
|
assert_equal(false, set.include?(0))
|
|
|
|
assert_equal(false, set.include?(nil))
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
set = Set["1",nil,"2",nil,"0","1",false]
|
|
|
|
assert_equal(true, set.include?(nil))
|
|
|
|
assert_equal(true, set.include?(false))
|
|
|
|
assert_equal(true, set.include?("1"))
|
|
|
|
assert_equal(false, set.include?(0))
|
|
|
|
assert_equal(false, set.include?(true))
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-11-09 21:52:04 +03:00
|
|
|
def test_superset?
|
2002-09-07 14:32:23 +04:00
|
|
|
set = Set[1,2,3]
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_raises(ArgumentError) {
|
2002-11-09 21:52:04 +03:00
|
|
|
set.superset?()
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_raises(ArgumentError) {
|
|
|
|
set.superset?(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_raises(ArgumentError) {
|
|
|
|
set.superset?([2])
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal(true, set.superset?(Set[]))
|
|
|
|
assert_equal(true, set.superset?(Set[1,2]))
|
|
|
|
assert_equal(true, set.superset?(Set[1,2,3]))
|
|
|
|
assert_equal(false, set.superset?(Set[1,2,3,4]))
|
|
|
|
assert_equal(false, set.superset?(Set[1,4]))
|
|
|
|
|
|
|
|
assert_equal(true, Set[].superset?(Set[]))
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_proper_superset?
|
|
|
|
set = Set[1,2,3]
|
|
|
|
|
|
|
|
assert_raises(ArgumentError) {
|
|
|
|
set.proper_superset?()
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_raises(ArgumentError) {
|
|
|
|
set.proper_superset?(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_raises(ArgumentError) {
|
|
|
|
set.proper_superset?([2])
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal(true, set.proper_superset?(Set[]))
|
|
|
|
assert_equal(true, set.proper_superset?(Set[1,2]))
|
|
|
|
assert_equal(false, set.proper_superset?(Set[1,2,3]))
|
|
|
|
assert_equal(false, set.proper_superset?(Set[1,2,3,4]))
|
|
|
|
assert_equal(false, set.proper_superset?(Set[1,4]))
|
|
|
|
|
|
|
|
assert_equal(false, Set[].proper_superset?(Set[]))
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_subset?
|
|
|
|
set = Set[1,2,3]
|
|
|
|
|
|
|
|
assert_raises(ArgumentError) {
|
|
|
|
set.subset?()
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_raises(ArgumentError) {
|
|
|
|
set.subset?(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_raises(ArgumentError) {
|
|
|
|
set.subset?([2])
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal(true, set.subset?(Set[1,2,3,4]))
|
|
|
|
assert_equal(true, set.subset?(Set[1,2,3]))
|
|
|
|
assert_equal(false, set.subset?(Set[1,2]))
|
|
|
|
assert_equal(false, set.subset?(Set[]))
|
|
|
|
|
|
|
|
assert_equal(true, Set[].subset?(Set[1]))
|
|
|
|
assert_equal(true, Set[].subset?(Set[]))
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_proper_subset?
|
|
|
|
set = Set[1,2,3]
|
|
|
|
|
|
|
|
assert_raises(ArgumentError) {
|
|
|
|
set.proper_subset?()
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_raises(ArgumentError) {
|
|
|
|
set.proper_subset?(2)
|
2002-09-07 14:32:23 +04:00
|
|
|
}
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_raises(ArgumentError) {
|
2002-11-09 21:52:04 +03:00
|
|
|
set.proper_subset?([2])
|
2002-09-07 14:32:23 +04:00
|
|
|
}
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-11-09 21:52:04 +03:00
|
|
|
assert_equal(true, set.proper_subset?(Set[1,2,3,4]))
|
|
|
|
assert_equal(false, set.proper_subset?(Set[1,2,3]))
|
|
|
|
assert_equal(false, set.proper_subset?(Set[1,2]))
|
|
|
|
assert_equal(false, set.proper_subset?(Set[]))
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-11-09 21:52:04 +03:00
|
|
|
assert_equal(false, Set[].proper_subset?(Set[]))
|
2002-09-07 14:32:23 +04:00
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_each
|
|
|
|
ary = [1,3,5,7,10,20]
|
|
|
|
set = Set.new(ary)
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_raises(LocalJumpError) {
|
|
|
|
set.each
|
|
|
|
}
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_nothing_raised {
|
|
|
|
set.each { |o|
|
|
|
|
ary.delete(o) or raise "unexpected element: #{o}"
|
2002-08-30 17:47:49 +04:00
|
|
|
}
|
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
ary.empty? or raise "forgotten elements: #{ary.join(', ')}"
|
|
|
|
}
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_add
|
|
|
|
set = Set[1,2,3]
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
ret = set.add(2)
|
|
|
|
assert_same(set, ret)
|
|
|
|
assert_equal(Set[1,2,3], set)
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-20 14:46:52 +04:00
|
|
|
ret = set.add?(2)
|
|
|
|
assert_nil(ret)
|
|
|
|
assert_equal(Set[1,2,3], set)
|
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
ret = set.add(4)
|
|
|
|
assert_same(set, ret)
|
|
|
|
assert_equal(Set[1,2,3,4], set)
|
2002-09-20 14:46:52 +04:00
|
|
|
|
|
|
|
ret = set.add?(5)
|
|
|
|
assert_same(set, ret)
|
|
|
|
assert_equal(Set[1,2,3,4,5], set)
|
2002-09-07 14:32:23 +04:00
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_delete
|
|
|
|
set = Set[1,2,3]
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
ret = set.delete(4)
|
2002-09-20 14:46:52 +04:00
|
|
|
assert_same(set, ret)
|
|
|
|
assert_equal(Set[1,2,3], set)
|
|
|
|
|
|
|
|
ret = set.delete?(4)
|
|
|
|
assert_nil(ret)
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_equal(Set[1,2,3], set)
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
ret = set.delete(2)
|
2002-09-20 14:46:52 +04:00
|
|
|
assert_equal(set, ret)
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_equal(Set[1,3], set)
|
2002-09-20 14:46:52 +04:00
|
|
|
|
|
|
|
ret = set.delete?(1)
|
|
|
|
assert_equal(set, ret)
|
|
|
|
assert_equal(Set[3], set)
|
2002-09-07 14:32:23 +04:00
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_delete_if
|
|
|
|
set = Set.new(1..10)
|
|
|
|
ret = set.delete_if { |i| i > 10 }
|
|
|
|
assert_same(set, ret)
|
|
|
|
assert_equal(Set.new(1..10), set)
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
set = Set.new(1..10)
|
|
|
|
ret = set.delete_if { |i| i % 3 == 0 }
|
|
|
|
assert_same(set, ret)
|
|
|
|
assert_equal(Set[1,2,4,5,7,8,10], set)
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-20 14:46:52 +04:00
|
|
|
def test_collect!
|
|
|
|
set = Set[1,2,3,'a','b','c',-1..1,2..4]
|
|
|
|
|
|
|
|
ret = set.collect! { |i|
|
|
|
|
case i
|
|
|
|
when Numeric
|
|
|
|
i * 2
|
|
|
|
when String
|
|
|
|
i.upcase
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_same(set, ret)
|
|
|
|
assert_equal(Set[2,4,6,'A','B','C',nil], set)
|
|
|
|
end
|
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_reject!
|
|
|
|
set = Set.new(1..10)
|
2002-09-20 14:46:52 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
ret = set.reject! { |i| i > 10 }
|
2002-09-20 14:46:52 +04:00
|
|
|
assert_nil(ret)
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_equal(Set.new(1..10), set)
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-20 14:46:52 +04:00
|
|
|
ret = set.reject! { |i| i % 3 == 0 }
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_same(set, ret)
|
|
|
|
assert_equal(Set[1,2,4,5,7,8,10], set)
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_merge
|
|
|
|
set = Set[1,2,3]
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
ret = set.merge([2,4,6])
|
|
|
|
assert_same(set, ret)
|
|
|
|
assert_equal(Set[1,2,3,4,6], set)
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_subtract
|
|
|
|
set = Set[1,2,3]
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
ret = set.subtract([2,4,6])
|
|
|
|
assert_same(set, ret)
|
|
|
|
assert_equal(Set[1,3], set)
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_plus
|
|
|
|
set = Set[1,2,3]
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
ret = set + [2,4,6]
|
|
|
|
assert_not_same(set, ret)
|
|
|
|
assert_equal(Set[1,2,3,4,6], ret)
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_minus
|
|
|
|
set = Set[1,2,3]
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
ret = set - [2,4,6]
|
|
|
|
assert_not_same(set, ret)
|
|
|
|
assert_equal(Set[1,3], ret)
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_and
|
|
|
|
set = Set[1,2,3,4]
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
ret = set & [2,4,6]
|
|
|
|
assert_not_same(set, ret)
|
|
|
|
assert_equal(Set[2,4], ret)
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_eq
|
|
|
|
set1 = Set[2,3,1]
|
|
|
|
set2 = Set[1,2,3]
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_equal(set1, set1)
|
|
|
|
assert_equal(set1, set2)
|
|
|
|
assert_not_equal(Set[1], [1])
|
2002-09-07 14:48:14 +04:00
|
|
|
|
|
|
|
set1 = Class.new(Set)["a", "b"]
|
|
|
|
set2 = Set["a", "b", set1]
|
|
|
|
set1 = set1.add(set1.clone)
|
|
|
|
|
2004-10-23 10:53:11 +04:00
|
|
|
# assert_equal(set1, set2)
|
|
|
|
# assert_equal(set2, set1)
|
2002-09-07 14:48:14 +04:00
|
|
|
assert_equal(set2, set2.clone)
|
|
|
|
assert_equal(set1.clone, set1)
|
2005-05-29 08:55:56 +04:00
|
|
|
|
|
|
|
assert_not_equal(Set[Exception.new,nil], Set[Exception.new,Exception.new], "[ruby-dev:26127]")
|
2002-09-07 14:32:23 +04:00
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
# def test_hash
|
|
|
|
# end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
# def test_eql?
|
|
|
|
# end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_classify
|
|
|
|
set = Set.new(1..10)
|
|
|
|
ret = set.classify { |i| i % 3 }
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_equal(3, ret.size)
|
|
|
|
assert_instance_of(Hash, ret)
|
|
|
|
ret.each_value { |value| assert_instance_of(Set, value) }
|
|
|
|
assert_equal(Set[3,6,9], ret[0])
|
|
|
|
assert_equal(Set[1,4,7,10], ret[1])
|
|
|
|
assert_equal(Set[2,5,8], ret[2])
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_divide
|
|
|
|
set = Set.new(1..10)
|
|
|
|
ret = set.divide { |i| i % 3 }
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_equal(3, ret.size)
|
|
|
|
n = 0
|
|
|
|
ret.each { |s| n += s.size }
|
|
|
|
assert_equal(set.size, n)
|
|
|
|
assert_equal(set, ret.flatten)
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
set = Set[7,10,5,11,1,3,4,9,0]
|
|
|
|
ret = set.divide { |a,b| (a - b).abs == 1 }
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_equal(4, ret.size)
|
|
|
|
n = 0
|
|
|
|
ret.each { |s| n += s.size }
|
|
|
|
assert_equal(set.size, n)
|
|
|
|
assert_equal(set, ret.flatten)
|
|
|
|
ret.each { |s|
|
|
|
|
if s.include?(0)
|
|
|
|
assert_equal(Set[0,1], s)
|
|
|
|
elsif s.include?(3)
|
|
|
|
assert_equal(Set[3,4,5], s)
|
|
|
|
elsif s.include?(7)
|
|
|
|
assert_equal(Set[7], s)
|
|
|
|
elsif s.include?(9)
|
|
|
|
assert_equal(Set[9,10,11], s)
|
|
|
|
else
|
|
|
|
raise "unexpected group: #{s.inspect}"
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
def test_inspect
|
|
|
|
set1 = Set[1]
|
2002-08-30 17:47:49 +04:00
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
assert_equal('#<Set: {1}>', set1.inspect)
|
|
|
|
|
|
|
|
set2 = Set[Set[0], 1, 2, set1]
|
|
|
|
assert_equal(false, set2.inspect.include?('#<Set: {...}>'))
|
|
|
|
|
|
|
|
set1.add(set2)
|
|
|
|
assert_equal(true, set1.inspect.include?('#<Set: {...}>'))
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
|
|
|
|
2002-09-07 14:32:23 +04:00
|
|
|
# def test_pretty_print
|
|
|
|
# end
|
|
|
|
|
2002-09-11 16:29:17 +04:00
|
|
|
# def test_pretty_print_cycle
|
2002-09-07 14:32:23 +04:00
|
|
|
# end
|
2002-08-30 17:47:49 +04:00
|
|
|
end
|
2002-09-07 14:32:23 +04:00
|
|
|
|
2002-09-20 14:46:52 +04:00
|
|
|
class TC_SortedSet < Test::Unit::TestCase
|
|
|
|
def test_sortedset
|
|
|
|
s = SortedSet[4,5,3,1,2]
|
|
|
|
|
|
|
|
assert_equal([1,2,3,4,5], s.to_a)
|
|
|
|
|
|
|
|
prev = nil
|
|
|
|
s.each { |o| assert(prev < o) if prev; prev = o }
|
|
|
|
assert_not_nil(prev)
|
|
|
|
|
|
|
|
s.map! { |o| -2 * o }
|
|
|
|
|
|
|
|
assert_equal([-10,-8,-6,-4,-2], s.to_a)
|
|
|
|
|
|
|
|
prev = nil
|
|
|
|
s.each { |o| assert(prev < o) if prev; prev = o }
|
|
|
|
assert_not_nil(prev)
|
|
|
|
|
|
|
|
s = SortedSet.new([2,1,3]) { |o| o * -2 }
|
|
|
|
assert_equal([-6,-4,-2], s.to_a)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class TC_Enumerable < Test::Unit::TestCase
|
|
|
|
def test_to_set
|
|
|
|
ary = [2,5,4,3,2,1,3]
|
|
|
|
|
|
|
|
set = ary.to_set
|
|
|
|
assert_instance_of(Set, set)
|
|
|
|
assert_equal([1,2,3,4,5], set.sort)
|
|
|
|
|
|
|
|
set = ary.to_set { |o| o * -2 }
|
|
|
|
assert_instance_of(Set, set)
|
|
|
|
assert_equal([-10,-8,-6,-4,-2], set.sort)
|
|
|
|
|
|
|
|
set = ary.to_set(SortedSet)
|
|
|
|
assert_instance_of(SortedSet, set)
|
|
|
|
assert_equal([1,2,3,4,5], set.to_a)
|
|
|
|
|
|
|
|
set = ary.to_set(SortedSet) { |o| o * -2 }
|
|
|
|
assert_instance_of(SortedSet, set)
|
|
|
|
assert_equal([-10,-8,-6,-4,-2], set.sort)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# class TC_RestricedSet < Test::Unit::TestCase
|
|
|
|
# def test_s_new
|
|
|
|
# assert_raises(ArgumentError) { RestricedSet.new }
|
|
|
|
#
|
|
|
|
# s = RestricedSet.new([-1,2,3]) { |o| o > 0 }
|
|
|
|
# assert_equal([2,3], s.sort)
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# def test_restriction_proc
|
|
|
|
# s = RestricedSet.new([-1,2,3]) { |o| o > 0 }
|
|
|
|
#
|
|
|
|
# f = s.restriction_proc
|
|
|
|
# assert_instance_of(Proc, f)
|
|
|
|
# assert(f[1])
|
|
|
|
# assert(!f[0])
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# def test_replace
|
|
|
|
# s = RestricedSet.new(-3..3) { |o| o > 0 }
|
|
|
|
# assert_equal([1,2,3], s.sort)
|
|
|
|
#
|
|
|
|
# s.replace([-2,0,3,4,5])
|
|
|
|
# assert_equal([3,4,5], s.sort)
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# def test_merge
|
|
|
|
# s = RestricedSet.new { |o| o > 0 }
|
|
|
|
# s.merge(-5..5)
|
|
|
|
# assert_equal([1,2,3,4,5], s.sort)
|
|
|
|
#
|
|
|
|
# s.merge([10,-10,-8,8])
|
|
|
|
# assert_equal([1,2,3,4,5,8,10], s.sort)
|
|
|
|
# end
|
|
|
|
# end
|