i have to impliment a chained hash table. in this prog i am using java.util.LinkedList.
in one node of linklise i have to store two object--
1)key value
2)value
but java.util.LinkedList. provide add(object) method. that means i can not add two elements in one node of linked list.
then how to implement it ??
please suggest.
thanks