#include <Unbounded_Set_Ex.h>
Collaboration diagram for ACE_Unbounded_Set_Ex< T >:
Public Types | |
typedef ACE_Unbounded_Set_Ex_Iterator< T > | ITERATOR |
typedef ACE_Unbounded_Set_Ex_Iterator< T > | iterator |
typedef ACE_Unbounded_Set_Ex_Const_Iterator< T > | CONST_ITERATOR |
typedef ACE_Unbounded_Set_Ex_Const_Iterator< T > | const_iterator |
Public Methods | |
ACE_Unbounded_Set_Ex (ACE_Allocator *alloc=0) | |
ACE_Unbounded_Set_Ex (const ACE_Unbounded_Set_Ex< T > &) | |
Copy constructor. | |
void | operator= (const ACE_Unbounded_Set_Ex< T > &) |
Assignment operator. | |
~ACE_Unbounded_Set_Ex (void) | |
Destructor. | |
int | is_empty (void) const |
Returns 1 if the container is empty, otherwise returns 0. | |
int | is_full (void) const |
Returns 0. | |
int | insert (const T &new_item) |
Linear insertion of an item. | |
int | insert_tail (const T &item) |
int | remove (const T &item) |
Linear remove operation. | |
int | find (const T &item) const |
size_t | size (void) const |
Size of the set. | |
void | dump (void) const |
Dump the state of an object. | |
void | reset (void) |
Reset the <ACE_Unbounded_Set_Ex> to be empty. | |
ACE_Unbounded_Set_Ex_Iterator< T > | begin (void) |
ACE_Unbounded_Set_Ex_Iterator< T > | end (void) |
void | iterator_add () const |
An Iterator has to register itself here. | |
void | iterator_leave () |
A non-const Iterator has to unregister itself here. | |
void | const_iterator_leave () const |
A Const_Iterator has to unregister itself here. | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. | |
Private Methods | |
void | delete_nodes (void) |
Delete all the nodes in the Set. | |
void | copy_nodes (const ACE_Unbounded_Set_Ex< T > &) |
Copy nodes into this set. | |
void | cleanup () |
Really delete all nodes marked for deletion. | |
Private Attributes | |
ACE_Node< T > * | head_ |
Head of the linked list of Nodes. | |
size_t | cur_size_ |
Current size of the set. | |
ACE_Allocator * | allocator_ |
Allocation strategy of the set. | |
int | number_of_iterators_ |
Number of iterators working on this set. | |
Friends | |
class | ACE_Unbounded_Set_Ex_Iterator< T > |
class | ACE_Unbounded_Set_Ex_Const_Iterator< T > |
This implementation of an unordered set uses a circular linked list with a dummy node. This implementation does not allow duplicates, but it maintains FIFO ordering of insertions.
Requirements and Performance Characteristics
|
|
|
|
|
|
|
|
|
Initialize an empty set using the allocation strategy of the user if provided. |
|
Copy constructor. Initialize this set to be an exact copy of the set provided. |
|
Destructor. Destroy the nodes of the set. |
|
|
|
Really delete all nodes marked for deletion.
|
|
A Const_Iterator has to unregister itself here.
|
|
Copy nodes into this set.
|
|
Delete all the nodes in the Set.
|
|
Dump the state of an object.
|
|
|
|
Performs a linear find operation. |
|
Linear insertion of an item. Insert <new_item> into the set (doesn't allow duplicates). Returns -1 if failures occur, 1 if item is already present, else 0. |
|
Constant time insert at the end of the set. |
|
Returns 1 if the container is empty, otherwise returns 0. Constant time is_empty check. |
|
Returns 0. Always returns 0 since the set can never fill up. |
|
An Iterator has to register itself here.
|
|
A non-const Iterator has to unregister itself here.
|
|
Assignment operator. Perform a deep copy of the rhs into the lhs. |
|
Linear remove operation. Remove first occurrence of <item> from the set. Returns 0 if it removes the item, -1 if it can't find the item, and -1 if a failure occurs. |
|
Reset the <ACE_Unbounded_Set_Ex> to be empty. Delete the nodes of the set. |
|
Size of the set. Access the size of the set. |
|
|
|
|
|
Declare the dynamic allocation hooks.
|
|
Allocation strategy of the set.
|
|
Current size of the set.
|
|
Head of the linked list of Nodes.
|
|
Number of iterators working on this set.
|