1999-04-07 16:42:40 +02:00
|
|
|
// BitSet - A vector of bits.
|
|
|
|
|
2000-05-04 17:50:34 +02:00
|
|
|
/* Copyright (C) 1998, 1999, 2000 Free Software Foundation
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 06:06:10 +01:00
|
|
|
This file is part of libgcj.
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 05:46:45 +01:00
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
|
|
details. */
|
1999-04-07 16:42:40 +02:00
|
|
|
|
|
|
|
package java.util;
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
/* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
|
|
|
|
* hashCode algorithm taken from JDK 1.2 docs.
|
|
|
|
*/
|
|
|
|
|
2000-10-29 06:06:10 +01:00
|
|
|
/**
|
|
|
|
* This class can be thought of in two ways. You can see it as a
|
|
|
|
* vector of bits or as a set of non-negative integers. The name
|
|
|
|
* <code>BitSet</code> is a bit misleading.
|
|
|
|
*
|
|
|
|
* It is implemented by a bit vector, but its equally possible to see
|
|
|
|
* it as set of non-negative integer; each integer in the set is
|
|
|
|
* represented by a set bit at the corresponding index. The size of
|
|
|
|
* this structure is determined by the highest integer in the set.
|
|
|
|
*
|
|
|
|
* You can union, intersect and build (symmetric) remainders, by
|
|
|
|
* invoking the logical operations and, or, andNot, resp. xor.
|
|
|
|
*
|
|
|
|
* This implementation is NOT synchronized against concurrent access from
|
|
|
|
* multiple threads. Specifically, if one thread is reading from a bitset
|
|
|
|
* while another thread is simultaneously modifying it, the results are
|
|
|
|
* undefined.
|
|
|
|
*
|
2000-10-30 02:51:34 +01:00
|
|
|
* @specnote Historically, there has been some confusion as to whether or not
|
|
|
|
* this class should be synchronized. From an efficiency perspective,
|
|
|
|
* it is very undesirable to synchronize it because multiple locks
|
|
|
|
* and explicit lock ordering are required to safely synchronize some
|
|
|
|
* methods. The JCL 1.2 supplement book specifies that as of JDK
|
|
|
|
* 1.2, the class is no longer synchronized.
|
2000-10-29 06:06:10 +01:00
|
|
|
*
|
|
|
|
* @author Jochen Hoenicke
|
|
|
|
* @author Tom Tromey <tromey@cygnus.com>
|
|
|
|
* @date October 23, 1998.
|
|
|
|
* @status API complete to JDK 1.3.
|
|
|
|
*/
|
2000-12-06 22:14:14 +01:00
|
|
|
public class BitSet implements Cloneable, Serializable
|
1999-04-07 16:42:40 +02:00
|
|
|
{
|
2000-10-29 06:06:10 +01:00
|
|
|
/**
|
|
|
|
* Create a new empty bit set.
|
|
|
|
*/
|
2000-10-29 05:46:45 +01:00
|
|
|
public BitSet()
|
2000-10-29 05:44:10 +01:00
|
|
|
{
|
2000-10-29 05:46:45 +01:00
|
|
|
this(64);
|
2000-10-29 05:44:10 +01:00
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 06:06:10 +01:00
|
|
|
/**
|
|
|
|
* Create a new empty bit set, with a given size. This
|
|
|
|
* constructor reserves enough space to represent the integers
|
|
|
|
* from <code>0</code> to <code>nbits-1</code>.
|
|
|
|
* @param nbits the initial size of the bit set.
|
|
|
|
* @throws NegativeArraySizeException if the specified initial
|
|
|
|
* size is negative.
|
|
|
|
* @require nbits >= 0
|
|
|
|
*/
|
2000-10-29 05:46:45 +01:00
|
|
|
public BitSet(int nbits)
|
2000-10-29 05:44:10 +01:00
|
|
|
{
|
|
|
|
if (nbits < 0)
|
2000-10-29 05:46:45 +01:00
|
|
|
throw new NegativeArraySizeException();
|
2000-10-29 05:44:10 +01:00
|
|
|
int length = nbits / 64;
|
|
|
|
if (nbits % 64 != 0)
|
|
|
|
++length;
|
|
|
|
bits = new long[length];
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 06:06:10 +01:00
|
|
|
/**
|
|
|
|
* Performs the logical AND operation on this bit set and the
|
|
|
|
* given <code>set</code>. This means it builds the intersection
|
|
|
|
* of the two sets. The result is stored into this bit set.
|
|
|
|
* @param set the second bit set.
|
|
|
|
* @require set != null
|
|
|
|
*/
|
|
|
|
public void and(BitSet bs)
|
|
|
|
{
|
|
|
|
int max = Math.min(bits.length, bs.bits.length);
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < max; ++i)
|
|
|
|
bits[i] &= bs.bits[i];
|
|
|
|
for (; i < bits.length; ++i)
|
|
|
|
bits[i] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs the logical AND operation on this bit set and the
|
|
|
|
* complement of the given <code>set</code>. This means it
|
|
|
|
* selects every element in the first set, that isn't in the
|
|
|
|
* second set. The result is stored into this bit set.
|
|
|
|
* @param set the second bit set.
|
|
|
|
* @require set != null
|
|
|
|
* @since JDK1.2
|
|
|
|
*/
|
|
|
|
public void andNot(BitSet bs)
|
|
|
|
{
|
|
|
|
int max = Math.min(bits.length, bs.bits.length);
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < max; ++i)
|
|
|
|
bits[i] &= ~bs.bits[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes the integer <code>bitIndex</code> from this set. That is
|
|
|
|
* the corresponding bit is cleared. If the index is not in the set,
|
|
|
|
* this method does nothing.
|
|
|
|
* @param bitIndex a non-negative integer.
|
|
|
|
* @exception ArrayIndexOutOfBoundsException if the specified bit index
|
|
|
|
* is negative.
|
|
|
|
* @require bitIndex >= 0
|
|
|
|
*/
|
2000-10-29 05:46:45 +01:00
|
|
|
public void clear(int pos)
|
2000-10-29 05:44:10 +01:00
|
|
|
{
|
|
|
|
if (pos < 0)
|
2000-10-29 05:46:45 +01:00
|
|
|
throw new IndexOutOfBoundsException();
|
2000-10-29 05:44:10 +01:00
|
|
|
int bit = pos % 64;
|
|
|
|
int offset = pos / 64;
|
2000-10-29 05:46:45 +01:00
|
|
|
ensure(offset);
|
2000-10-29 05:44:10 +01:00
|
|
|
bits[offset] &= ~(1L << bit);
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 06:06:10 +01:00
|
|
|
/**
|
|
|
|
* Create a clone of this bit set, that is an instance of the same
|
|
|
|
* class and contains the same elements. But it doesn't change when
|
|
|
|
* this bit set changes.
|
|
|
|
* @return the clone of this object.
|
|
|
|
*/
|
2000-10-29 05:46:45 +01:00
|
|
|
public Object clone()
|
2000-10-29 05:44:10 +01:00
|
|
|
{
|
2000-10-29 05:46:45 +01:00
|
|
|
BitSet bs = new BitSet(bits.length * 64);
|
|
|
|
System.arraycopy(bits, 0, bs.bits, 0, bits.length);
|
2000-10-29 05:44:10 +01:00
|
|
|
return bs;
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 06:06:10 +01:00
|
|
|
/**
|
|
|
|
* Returns true if the <code>obj</code> is a bit set that contains
|
|
|
|
* exactly the same elements as this bit set, otherwise false.
|
|
|
|
* @return true if obj equals this bit set.
|
|
|
|
*/
|
2000-10-29 05:46:45 +01:00
|
|
|
public boolean equals(Object obj)
|
2000-10-29 05:44:10 +01:00
|
|
|
{
|
|
|
|
if (!(obj instanceof BitSet))
|
|
|
|
return false;
|
|
|
|
BitSet bs = (BitSet) obj;
|
2000-10-29 05:46:45 +01:00
|
|
|
int max = Math.min(bits.length, bs.bits.length);
|
2000-10-29 05:44:10 +01:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < max; ++i)
|
|
|
|
if (bits[i] != bs.bits[i])
|
1999-04-07 16:42:40 +02:00
|
|
|
return false;
|
2000-10-29 05:44:10 +01:00
|
|
|
// If one is larger, check to make sure all extra bits are 0.
|
|
|
|
for (int j = i; j < bits.length; ++j)
|
|
|
|
if (bits[j] != 0)
|
|
|
|
return false;
|
|
|
|
for (int j = i; j < bs.bits.length; ++j)
|
|
|
|
if (bs.bits[j] != 0)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 06:06:10 +01:00
|
|
|
/**
|
|
|
|
* Returns true if the integer <code>bitIndex</code> is in this bit
|
|
|
|
* set, otherwise false.
|
|
|
|
* @param bitIndex a non-negative integer
|
|
|
|
* @return the value of the bit at the specified index.
|
|
|
|
* @exception ArrayIndexOutOfBoundsException if the specified bit index
|
|
|
|
* is negative.
|
|
|
|
* @require bitIndex >= 0
|
|
|
|
*/
|
2000-10-29 05:46:45 +01:00
|
|
|
public boolean get(int pos)
|
2000-10-29 05:44:10 +01:00
|
|
|
{
|
|
|
|
if (pos < 0)
|
2000-10-29 05:46:45 +01:00
|
|
|
throw new IndexOutOfBoundsException();
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 05:44:10 +01:00
|
|
|
int bit = pos % 64;
|
|
|
|
int offset = pos / 64;
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 05:44:10 +01:00
|
|
|
if (offset >= bits.length)
|
|
|
|
return false;
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 05:44:10 +01:00
|
|
|
return (bits[offset] & (1L << bit)) == 0 ? false : true;
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 06:06:10 +01:00
|
|
|
/**
|
|
|
|
* Returns a hash code value for this bit set. The hash code of
|
|
|
|
* two bit sets containing the same integers is identical. The algorithm
|
|
|
|
* used to compute it is as follows:
|
|
|
|
*
|
|
|
|
* Suppose the bits in the BitSet were to be stored in an array of
|
|
|
|
* long integers called <code>bits</code>, in such a manner that
|
|
|
|
* bit <code>k</code> is set in the BitSet (for non-negative values
|
|
|
|
* of <code>k</code>) if and only if
|
|
|
|
*
|
|
|
|
* <pre>
|
|
|
|
* ((k/64) < bits.length) && ((bits[k/64] & (1L << (bit % 64))) != 0)
|
|
|
|
* </pre>
|
|
|
|
*
|
|
|
|
* Then the following definition of the hashCode method
|
|
|
|
* would be a correct implementation of the actual algorithm:
|
|
|
|
*
|
|
|
|
* <pre>
|
|
|
|
* public int hashCode() {
|
|
|
|
* long h = 1234;
|
|
|
|
* for (int i = bits.length-1; i>=0; i--) {
|
|
|
|
* h ^= bits[i] * (i + 1);
|
|
|
|
* }
|
|
|
|
* return (int)((h >> 32) ^ h);
|
|
|
|
* }
|
|
|
|
* </pre>
|
|
|
|
*
|
|
|
|
* Note that the hash code values changes, if the set is changed.
|
|
|
|
* @return the hash code value for this bit set.
|
|
|
|
*/
|
2000-10-29 05:46:45 +01:00
|
|
|
public int hashCode()
|
2000-10-29 05:44:10 +01:00
|
|
|
{
|
|
|
|
long h = 1234;
|
|
|
|
for (int i = bits.length - 1; i >= 0; --i)
|
|
|
|
h ^= bits[i] * (i + 1);
|
|
|
|
return (int) ((h >> 32) ^ h);
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 06:06:10 +01:00
|
|
|
/**
|
|
|
|
* Returns the logical number of bits actually used by this bit
|
|
|
|
* set. It returns the index of the highest set bit plus one.
|
|
|
|
* Note that this method doesn't return the number of set bits.
|
|
|
|
* @return the index of the highest set bit plus one.
|
|
|
|
*/
|
|
|
|
public int length()
|
|
|
|
{
|
|
|
|
// Set i to highest index that contains a non-zero value.
|
|
|
|
int i;
|
|
|
|
for (i = bits.length - 1; i >= 0 && bits[i] == 0; --i)
|
|
|
|
;
|
|
|
|
|
|
|
|
// if i < 0 all bits are cleared.
|
|
|
|
if (i < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Now determine the exact length.
|
|
|
|
long b = bits[i];
|
|
|
|
int len = (i + 1) * 64;
|
|
|
|
// b >= 0 checks if the highest bit is zero.
|
|
|
|
while (b >= 0)
|
|
|
|
{
|
|
|
|
--len;
|
|
|
|
b <<= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs the logical OR operation on this bit set and the
|
|
|
|
* given <code>set</code>. This means it builds the union
|
|
|
|
* of the two sets. The result is stored into this bit set, which
|
|
|
|
* grows as necessary.
|
|
|
|
* @param set the second bit set.
|
|
|
|
* @exception OutOfMemoryError if the current set can't grow.
|
|
|
|
* @require set != null
|
|
|
|
*/
|
2000-10-29 05:46:45 +01:00
|
|
|
public void or(BitSet bs)
|
2000-10-29 05:44:10 +01:00
|
|
|
{
|
2000-10-29 05:46:45 +01:00
|
|
|
ensure(bs.bits.length - 1);
|
2000-10-29 05:44:10 +01:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < bs.bits.length; ++i)
|
|
|
|
bits[i] |= bs.bits[i];
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 06:06:10 +01:00
|
|
|
/**
|
|
|
|
* Add the integer <code>bitIndex</code> to this set. That is
|
|
|
|
* the corresponding bit is set to true. If the index was already in
|
|
|
|
* the set, this method does nothing. The size of this structure
|
|
|
|
* is automatically increased as necessary.
|
|
|
|
* @param bitIndex a non-negative integer.
|
|
|
|
* @exception ArrayIndexOutOfBoundsException if the specified bit index
|
|
|
|
* is negative.
|
|
|
|
* @require bitIndex >= 0
|
|
|
|
*/
|
2000-10-29 05:46:45 +01:00
|
|
|
public void set(int pos)
|
2000-10-29 05:44:10 +01:00
|
|
|
{
|
|
|
|
if (pos < 0)
|
2000-10-29 05:46:45 +01:00
|
|
|
throw new IndexOutOfBoundsException();
|
2000-10-29 05:44:10 +01:00
|
|
|
int bit = pos % 64;
|
|
|
|
int offset = pos / 64;
|
2000-10-29 05:46:45 +01:00
|
|
|
ensure(offset);
|
2000-10-29 05:44:10 +01:00
|
|
|
bits[offset] |= 1L << bit;
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 06:06:10 +01:00
|
|
|
/**
|
|
|
|
* Returns the number of bits actually used by this bit set. Note
|
|
|
|
* that this method doesn't return the number of set bits.
|
|
|
|
* @returns the number of bits currently used.
|
|
|
|
*/
|
2000-10-29 05:46:45 +01:00
|
|
|
public int size()
|
2000-10-29 05:44:10 +01:00
|
|
|
{
|
|
|
|
return bits.length * 64;
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 06:06:10 +01:00
|
|
|
/**
|
|
|
|
* Returns the string representation of this bit set. This
|
|
|
|
* consists of a comma separated list of the integers in this set
|
|
|
|
* surrounded by curly braces. There is a space after each comma.
|
|
|
|
* @return the string representation.
|
|
|
|
*/
|
2000-10-29 05:46:45 +01:00
|
|
|
public String toString()
|
2000-10-29 05:44:10 +01:00
|
|
|
{
|
2000-10-29 06:06:10 +01:00
|
|
|
String r = "{";
|
2000-10-29 05:44:10 +01:00
|
|
|
boolean first = true;
|
|
|
|
for (int i = 0; i < bits.length; ++i)
|
|
|
|
{
|
2000-10-29 06:06:10 +01:00
|
|
|
long bit = 1;
|
2000-10-29 05:44:10 +01:00
|
|
|
long word = bits[i];
|
2000-10-29 06:06:10 +01:00
|
|
|
if (word == 0)
|
|
|
|
continue;
|
2000-10-29 05:44:10 +01:00
|
|
|
for (int j = 0; j < 64; ++j)
|
|
|
|
{
|
|
|
|
if ((word & bit) != 0)
|
|
|
|
{
|
|
|
|
if (!first)
|
2000-10-29 06:06:10 +01:00
|
|
|
r += ", ";
|
|
|
|
r += Integer.toString(64 * i + j);
|
2000-10-29 05:44:10 +01:00
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
bit <<= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-10-29 06:06:10 +01:00
|
|
|
return r += "}";
|
2000-10-29 05:44:10 +01:00
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2000-10-29 06:06:10 +01:00
|
|
|
/**
|
|
|
|
* Performs the logical XOR operation on this bit set and the
|
|
|
|
* given <code>set</code>. This means it builds the symmetric
|
|
|
|
* remainder of the two sets (the elements that are in one set,
|
|
|
|
* but not in the other). The result is stored into this bit set,
|
|
|
|
* which grows as necessary.
|
|
|
|
* @param set the second bit set.
|
|
|
|
* @exception OutOfMemoryError if the current set can't grow.
|
|
|
|
* @require set != null
|
|
|
|
*/
|
2000-10-29 05:46:45 +01:00
|
|
|
public void xor(BitSet bs)
|
2000-10-29 05:44:10 +01:00
|
|
|
{
|
2000-10-29 05:46:45 +01:00
|
|
|
ensure(bs.bits.length - 1);
|
2000-10-29 05:44:10 +01:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < bs.bits.length; ++i)
|
|
|
|
bits[i] ^= bs.bits[i];
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
|
|
|
// Make sure the vector is big enough.
|
2000-10-29 05:46:45 +01:00
|
|
|
private final void ensure(int lastElt)
|
2000-10-29 05:44:10 +01:00
|
|
|
{
|
|
|
|
if (lastElt + 1 > bits.length)
|
|
|
|
{
|
|
|
|
long[] nd = new long[lastElt + 1];
|
2000-10-29 05:46:45 +01:00
|
|
|
System.arraycopy(bits, 0, nd, 0, bits.length);
|
2000-10-29 05:44:10 +01:00
|
|
|
bits = nd;
|
|
|
|
}
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
|
|
|
// The actual bits.
|
2000-10-29 06:06:10 +01:00
|
|
|
long[] bits;
|
|
|
|
|
2000-10-27 12:33:46 +02:00
|
|
|
private static final long serialVersionUID = 7997698588986878753L;
|
1999-04-07 16:42:40 +02:00
|
|
|
}
|