As with any "what should I use to represent this structure" question it does really depend on how you want to interact with it
Scene graphs are common in 3D libraries, they provide a tree based traversal over the nodes, often allowing the transforms, interactions and other attributes to cascade down the tree.
For something to hold objects to be rendered a common structure is a Binary space Partitioning Tree which allows efficient culling of objects which are definitely not visible or occluded by others.
Edit; I missed that you were indexing by floating point. This is normally a bad idea (since the exactness required in most standard maps will causes issues relating to the instability of floating point behaviour). Unless you really want this behaviour
In this case you need to have some way of handling it such as:
- chunking your domain so that you can accurately point at a small section of it and prevent more than one node occupying the same chunk of space.
- Have some way of bucketing your space (possibly requiring adaptive subdivision of areas with higher concentrations of nodes) so that when asking for the point p,r you are given a (possibly empty) set of nodes present in that region.
