Name: Anonymous 2012-11-19 9:12
Hello, I come seeking the wisdom of the wise.
I have this hashtable:
Hashtable<Integer, Hashtable<Integer, Node>> table = new Hashtable<Integer, Hashtable<Integer, Node>>();
How would I add a node to that? The closest I can get by referencing the API and google is:
table.put(0, table.put(0, current));
I have this hashtable:
Hashtable<Integer, Hashtable<Integer, Node>> table = new Hashtable<Integer, Hashtable<Integer, Node>>();
How would I add a node to that? The closest I can get by referencing the API and google is:
table.put(0, table.put(0, current));