i have one problem with my code ,i did a sample program to display the emp details from a linked list,now the problem when i trying to delete a particular entry means it doe
When you do this:
list.remove(101);
you are calling this method, which will not serve your purpose.
You should rather use:
list.remove(data);