mcb LEDA Extension Package
0.8
|
A sparse vector with elements in GF2. More...
#include <spvecgf2.h>
Public Member Functions | |
spvecgf2 () | |
spvecgf2 (const spvecgf2 &a) | |
~spvecgf2 () | |
spvecgf2 & | operator= (const spvecgf2 &i) |
spvecgf2 & | operator= (const int &i) |
spvecgf2 & | operator= (d_int_set &i) |
spvecgf2 | operator- () const |
int | operator* (const spvecgf2 &a) const |
spvecgf2 | operator+ (const spvecgf2 &a) const |
void | add (const spvecgf2 &a) |
spvecgf2 | operator% (const spvecgf2 &a) const |
d_int_set | operator% (const d_int_set &a) const |
spvecgf2 | intersect (const spvecgf2 &a) const |
spvecgf2 & | operator+= (const spvecgf2 &a) |
spvecgf2 & | operator-= (const spvecgf2 &a) |
spvecgf2 & | operator%= (const spvecgf2 &a) |
void | swap (spvecgf2 &a) |
d_int_set | to_d_int_set () const |
list< int > | to_list () const |
void | clear () |
void | print (std::ostream &o) const |
void | append (int index) |
void | insert (int index) |
int | pop () |
void | sort () |
bool | empty () const |
int | size () const |
list_item | first () const |
list_item | last () const |
list_item | succ (list_item it) const |
list_item | pred (list_item it) const |
int | index (list_item it) const |
int | inf (list_item it) const |
A sparse vector with elements in GF2.
An object of this class represents a cycle of an undirected graph. It behaves as a sparse matrix of values in GF(2).
This class is implemented internally by double linked lists. The internal representation is a list of integers representing the indexes where the vector has a one. The indexes are stored in increasing order. Operations append and insert take constant time but do not ensure the correct ordering of the elements. See sort() for reconstructing this ordering.
Most binary operations take time proportional to the number of elements in the list by assumming that the indexes are stored in increasing order. Size, empty, clear and the iterators' methods take constant time. Swap also takes constant time.
Such an object can be accessed in exactly the same manner that a list of LEDA is accessed. Each one in the sparse vector corresponds in a list_item in a list. Thus, the following is valid:
LEDA's forall macro works for this objects. It can be used in the following way:
mcb::spvecgf2::spvecgf2 | ( | ) |
Default constructor.
mcb::spvecgf2::spvecgf2 | ( | const spvecgf2 & | a | ) |
Copy constructor.
mcb::spvecgf2::~spvecgf2 | ( | ) |
Destructor
void mcb::spvecgf2::add | ( | const spvecgf2 & | a | ) |
void mcb::spvecgf2::append | ( | int | index | ) |
Append an entry, without checking for proper order.
index | An integer representing that the sparse vector has a one at that position. Indexing should start from zero. |
Referenced by clear().
|
inline |
|
inline |
Check if empty.
|
inline |
Returns the first item of the sparse vector. Each item represents a position where the sparse vector has a one.
|
inline |
Get the index of an item. Each item represents a one in the sparse vector.
it | The item. |
Referenced by clear().
|
inline |
Get the index of an item. Each item represents a one in the sparse vector.
it | The item. |
References mcb::operator<<(), and mcb::operator>>().
void mcb::spvecgf2::insert | ( | int | index | ) |
Append an entry, without checking for proper order.
index | An integer representing that the sparse vector has a one at that position. Indexing should start from zero. |
Referenced by clear().
|
inline |
Returns the last item of the sparse vector. Each item represents a position where the sparse vector has a one.
d_int_set mcb::spvecgf2::operator% | ( | const d_int_set & | a | ) | const |
Operator to compute the symmetric difference of this sparse vector and of a LEDA dynamic integer set.
a | A dynamic integer set. |
int mcb::spvecgf2::operator* | ( | const spvecgf2 & | a | ) | const |
spvecgf2 mcb::spvecgf2::operator- | ( | ) | const |
Negate the current vector.
Assign a vector to another vector.
i | The vector to assign from. |
spvecgf2& mcb::spvecgf2::operator= | ( | const int & | i | ) |
Assign current vector to be .
spvecgf2& mcb::spvecgf2::operator= | ( | d_int_set & | i | ) |
Assignment operator for a leda::d_int_set.
i | A compressed integer set of LEDA. |
|
inline |
Delete the first entry of the sparse vector and return its index.
|
inline |
Get the predecessor of an item. Each item represents a position where the sparse vector has a one.
void mcb::spvecgf2::print | ( | std::ostream & | o | ) | const |
|
inline |
Get size of sparse vector.
|
inline |
Sort the internal representation of the sparse vector. This operation ensures that a correct representation after its call. Should not be necessary unless insert or append were called in wrong order. Note that this function does not make sure the entries are unique.
|
inline |
Get the successor of an item. Each item represents a position where the sparse vector has a one.
void mcb::spvecgf2::swap | ( | spvecgf2 & | a | ) |
Swap two sparse vectors.
a | A sparse vector to swap with the current object. |
d_int_set mcb::spvecgf2::to_d_int_set | ( | ) | const |
Transform the sparse vector to a LEDA dynamic integer set.
|
inline |
Transform the sparse vector to a list of integers.