Relating to this: stack overflow question,
where I found out that .Net dictionaries resize to the next prime size that is at least twice the current size, I was wondering if there is any balanced tree-like data structure that can resize to prime sizes (similar to B-Trees or Binomial trees maybe).
What is the tree-like data structure behind .Net's dictionaries?
Thanks.