difference between arraylist and linkedlist otherthan
performance
Answers were Sorted based on User's Feedback
Answer / db
In array list if we perform insertion or deletion operation, then there is many changes in the remaining objects to get adjust. if any operation like insertion or deletion is performed on linked lists there is only updation links between the nodes. so if there is lots of insertions and deletions better to go with linked lists rather than array list.
| Is This Answer Correct ? | 10 Yes | 3 No |
Answer / rahul
There are lot of method in LinkedList like addFirst(),
addLat(), pop(), peak() etc.
But ArrayList dont.
| Is This Answer Correct ? | 3 Yes | 2 No |
What are memory tables?
When wait(), notify(), notifyall() methods are called does it releases the lock or holds the acquired lock?
What is internal variable?
What is super?
How to display all the prime numbers between 1 and n (n is the number, get the input from user)
What is jvm? Why is java called the platform independent programming language?
Is list thread safe in java?
What is the use of StringTokenizer class?
different types of threads?
What is the final keyword?
What is unicode in java?
What is the default size of load factor in hashing based collection?