If I have understood your needs correctly, you basically want to do a one-to-many mapping of Node->Vector.
Provided your Node properly implements hashCode() and equals(), you could use a Multimap from Google Guava. This provides the Map<Node,Collection<Vector>> mapping automatically.
The benefit of using Multimap is that you don't need to do this:
Collection<Vector> vectors = nodeToVectorMapping.get(node);
if (vectors == null) {
vectors = new HashSet<Vector>();
nodeToVectorMapping.put(node, vectors);
}
vectors.add(vector);
instead, you only need to do this:
nodeToVectorMapping.put(node,vector);
The Multimap takes care of checking whether the inner Collection exists or not. If you find yourself going into a multithreaded environment, the 'do it by hand' approach would involve synchronising to ensure that two threads didn't create the Collection at the same time, and so-on. Google's Guava helps a lot with all of that, and a lot more besides.
As a big fan of Google Collections (the original home of Multimap before it was absorbed into the larger Guava project), I should also point you in the direction of MapMaker, which has all sorts of amazing goodness in it that you will perhaps find useful - size limitations, concurrency levels, lazy initialisation of Values based upon keys, that sort of thing. I've used these in a highly-concurrent application and they've saved my life on many an occasion! :)
Nodesimply have a field that stored a list of theForces acting on it? – biziclop Feb 9 '11 at 15:54