Difference between revisions of "StringMap.h"

From Genome Analysis Wiki
Jump to navigationJump to search
(Created page with ''''StringMap.h''' declares classes that allow one to store a list of strings and associated items. The list is stored in sorted fashion. Inserts and deletes can be quite expensiv…')
 
 
Line 1: Line 1:
'''StringMap.h''' declares classes that allow one to store a list of strings and associated items. The list is stored in sorted fashion. Inserts and deletes can be quite expensive and if access to class contents ''in order'' is required, a [[StringHash.h]] might be much more efficient.
+
'''StringMap.h''' declares classes that allow one to store a list of strings and associated items.  
 +
 
 +
The list is stored in sorted fashion so that inserts and deletes can be quite expensive. If access to class contents ''in order'' is *not required*, a [[StringHash.h]] might be much more efficient.
  
 
== Dependencies ==
 
== Dependencies ==
  
 
This file depends on [[StringHash.h]]
 
This file depends on [[StringHash.h]]

Latest revision as of 03:31, 26 November 2009

StringMap.h declares classes that allow one to store a list of strings and associated items.

The list is stored in sorted fashion so that inserts and deletes can be quite expensive. If access to class contents in order is *not required*, a StringHash.h might be much more efficient.

Dependencies

This file depends on StringHash.h