$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: David B. Held (dheld_at_[hidden])
Date: 2001-07-12 15:40:34
>Am I solving the wrong problem? I'm trying to design a dictionary with
>these properties:
>
>* the internal representation is a sorted vector of pair<key, value>
>* iterators are not invalidated by insert/erase
Why does the internel representation need to be a vector? What's
wrong with std::map?
Dave