ACE  6.0.6
Public Types | Public Member Functions | Public Attributes | Private Attributes | Friends
ACE_Fixed_Set Class Reference

Implement a simple unordered set of {T} with maximum {ACE_SIZE}. More...

#include <Containers_T.h>

List of all members.

Public Types

typedef ACE_Fixed_Set_Iterator
< T, ACE_SIZE > 
ITERATOR
typedef
ACE_Fixed_Set_Const_Iterator
< T, ACE_SIZE > 
CONST_ITERATOR

Public Member Functions

 ACE_Fixed_Set (void)
 Default Constructor.
 ACE_Fixed_Set (const ACE_Fixed_Set< T, ACE_SIZE > &)
 Copy constructor.
void operator= (const ACE_Fixed_Set< T, ACE_SIZE > &)
 Assignment operator.
 ~ACE_Fixed_Set (void)
 Destructor.
int is_empty (void) const
 Returns 1 if the container is empty, otherwise returns 0.
int is_full (void) const
 Returns 1 if the container is full, otherwise returns 0.
int insert (const T &new_item)
 Linear time insertion of an item unique to the set.
int remove (const T &item)
 Linear time removal operation of an item.
int find (const T &item) const
 Finds if item occurs in the set. Returns 0 if finds, else -1.
size_t size (void) const
 Size of the set.
void dump (void) const
 Dump the state of an object.

Public Attributes

 ACE_ALLOC_HOOK_DECLARE
 Declare the dynamic allocation hooks.
item_
 Item in the set.
int is_free_
 Keeps track of whether this item is in use or not.

Private Attributes

struct {
   T   item_
 Item in the set.
   int   is_free_
 Keeps track of whether this item is in use or not.
search_structure_ [ACE_SIZE]
 Holds the contents of the set.
size_t cur_size_
 Current size of the set.
size_t max_size_
 Maximum size of the set.

Friends

class ACE_Fixed_Set_Iterator_Base< T, ACE_SIZE >
class ACE_Fixed_Set_Iterator< T, ACE_SIZE >
class ACE_Fixed_Set_Const_Iterator< T, ACE_SIZE >

Detailed Description

Implement a simple unordered set of {T} with maximum {ACE_SIZE}.

This implementation of an unordered set uses a fixed array. It does not allow duplicate members. The set provides linear insertion/deletion operations.

Requirements and Performance Characteristics


Member Typedef Documentation


Constructor & Destructor Documentation

ACE_Fixed_Set::ACE_Fixed_Set ( void  )

Default Constructor.

Creates an empy set

ACE_Fixed_Set::ACE_Fixed_Set ( const ACE_Fixed_Set< T, ACE_SIZE > &  )

Copy constructor.

Initializes a set to be a copy of the set parameter.

ACE_Fixed_Set::~ACE_Fixed_Set ( void  )

Destructor.

Destroys a set.


Member Function Documentation

void ACE_Fixed_Set::dump ( void  ) const

Dump the state of an object.

int ACE_Fixed_Set::find ( const T &  item) const

Finds if item occurs in the set. Returns 0 if finds, else -1.

Performs a linear find operation for the specified item.

int ACE_Fixed_Set::insert ( const T &  new_item)

Linear time insertion of an item unique to the set.

Insert new_item into the set (doesn't allow duplicates). Returns -1 if failures occur, 1 if item is already present, else 0.

int ACE_Fixed_Set::is_empty ( void  ) const

Returns 1 if the container is empty, otherwise returns 0.

Performs constant time check to determine if a set is empty.

int ACE_Fixed_Set::is_full ( void  ) const

Returns 1 if the container is full, otherwise returns 0.

Performs a constant time check to see if the set is full.

void ACE_Fixed_Set::operator= ( const ACE_Fixed_Set< T, ACE_SIZE > &  )

Assignment operator.

Deep copy of one set to another.

int ACE_Fixed_Set::remove ( const T &  item)

Linear time removal operation of an item.

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. Removal doesn't reclaim memory for the item.

size_t ACE_Fixed_Set::size ( void  ) const

Size of the set.

Returns the current size of the set.


Friends And Related Function Documentation

friend class ACE_Fixed_Set_Const_Iterator< T, ACE_SIZE > [friend]
friend class ACE_Fixed_Set_Iterator< T, ACE_SIZE > [friend]
friend class ACE_Fixed_Set_Iterator_Base< T, ACE_SIZE > [friend]

Member Data Documentation

Declare the dynamic allocation hooks.

size_t ACE_Fixed_Set::cur_size_ [private]

Current size of the set.

Keeps track of whether this item is in use or not.

Item in the set.

size_t ACE_Fixed_Set::max_size_ [private]

Maximum size of the set.

struct { ... } ACE_Fixed_Set::search_structure_[ACE_SIZE] [private]

Holds the contents of the set.


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines