Hi this is my code for inserting an item...i was told it failed when inserting at the beginning of the list but don't understand why or how to fix it.
public void put(K key, V value){
OrderedLinkedListEntry <K,V> item = new OrderedLinkedListEntry (key, value);
OrderedLinkedListEntry <K,V> current = head;
OrderedLinkedListEntry <K,V> previous = null;
if(current == null){
head = item;
numItems ++;
return;
}
while(current != null){
int result = key.compareTo(current.getKey());
if(result == 0){
current.setValue(value);
return;
}else if (result < 0){
item.setNext(current);
if (previous != null){
previous.setNext(item);
}
numItems ++;
return;
}
previous = current;
current = current.getNext();
}
previousis null when the key to insert is less than the key in the head item. – Apalala Mar 20 '11 at 19:36