I looked at the new checkins for fast MatMatSym. It looks to me like you want a data<div>structure that has</div><div><br></div><div>  a) O(N) space, where N is the number of entries</div><div><br></div><div>  b) fast insert</div>
<div><br></div><div>  c) fast traversal</div><div><br></div><div>It seems like the best data structure of this is</div><div><br></div><div>   <a href="http://en.wikipedia.org/wiki/Y-fast_trie">http://en.wikipedia.org/wiki/Y-fast_trie</a></div>
<div><br></div><div>It has O(N) space, and O(log log M) where M is the maximum key size. It basically</div><div>uses prefix compression on the bitwise representation of the keys, so that runs of</div><div>consecutive integers are handled well.</div>
<div><br></div><div>So far, I cannot find any free implementations.</div><div><br></div><div>   Matt<br clear="all"><div><br></div>-- <br>What most experimenters take for granted before they begin their experiments is infinitely more interesting than any results to which their experiments lead.<br>
-- Norbert Wiener<br>
</div>