| |
GeekInterview.com > Interview Questions > Concepts > Data Structures
| Print | |
Question: Data Structure for one million named objects
Answer: If you have one million named objects and you want to store them in a data structure that lets you insert new objects quickly and search for an object by name quickly, what data structure should you use? |
| September 09, 2008 04:23:04 |
#2 |
| skmandowara |
Member Since: September 2008 Total Comments: 1 |
RE: Data Structure for one million named objects |
One Million Named Objects:
1. I dont think binary Tree is a good idea. Depth of the tree will be huge 2. B+ Tree is the right Data structure |
| |
Back To Question | |