m******d 发帖数: 3243 | 1 What are the differences between arraylist and linked list?
Thanks | g*****g 发帖数: 34805 | 2 Array List is implemented as an array,
linked list is a linked list,
I assume you know the difference between them,
If not, take any data structure book and you'll know.
【在 m******d 的大作中提到】 : What are the differences between arraylist and linked list? : Thanks
| m******d 发帖数: 3243 | 3 Array is good for random access, but not insertion or deletion. while access
linked list, one has to traverse the list. |
|