I'm implement a hashing table using ArrayList and LinkedList as bucket.
ArrayList<LinkedList<node>> db = new ArrayList<LinkedList<node>>();
How can I add new element in this ArrayList.
Would it be something like this?
this.db.add(hash, element);