由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - ArrayList and Link list
相关主题
Java里有没有象cell array一样的东西List, LinkedList and Vector
How to check if an element is in an array?Generic type cast warning
Array 能不能用ArrayList作为它的元素?immutable list
ArrayList vs Array, StringBuffer vs String, 大侠们给讲讲有is access to int[] faster than List?
今天碰到一个面试题ArraList question
问一个Java的问题,关于create generic arrayUnmodifiable List concurrent access 问题
如何造Array of Generic Type问个 Generic 的问题
Simple question: delete element from collection on condition?Re: question:linked list?
相关话题的讨论汇总
话题: list话题: arraylist话题: link话题: linked话题: array
进入Java版参与讨论
1 (共1页)
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.
1 (共1页)
进入Java版参与讨论
相关主题
Re: question:linked list?今天碰到一个面试题
web service returns HashMap that contains multiple ArrayList问一个Java的问题,关于create generic array
Wierd issue with Cassandra如何造Array of Generic Type
Stupid IBM JVM: operator precedenceSimple question: delete element from collection on condition?
Java里有没有象cell array一样的东西List, LinkedList and Vector
How to check if an element is in an array?Generic type cast warning
Array 能不能用ArrayList作为它的元素?immutable list
ArrayList vs Array, StringBuffer vs String, 大侠们给讲讲有is access to int[] faster than List?
相关话题的讨论汇总
话题: list话题: arraylist话题: link话题: linked话题: array