This how you would add an item:
public void insert (Object item) { Link add = new Link(); add.data = item; add.next = head; _head = add; ++_l
It is definetly possible. But what would matter most is deciding at which position to insert new element because after each insertion the list would change and position of new element coming will have to be decided appropriately. You can try this
insertat=head; for(i=0;i