ArrayList :可变数组实现的
LinkedList :循环双向链表实现,get操作效率低,delete操作效率高
Vector:与ArrayList相似,但是Vector是同步的,线程安全的
ArrayList与Vector :ArrayList效率更高一些 ,new的时候不加数组长度,默认是10.应该根据自身需求,在创建对象时选择容器大小,避免扩容开销。在进行扩容的时候,Vector扩容至原来的一倍,ArrayList增加至原来的0.5倍.
ArrayList 和 LinkedList 的区别是什么?
1. ArrayList底层基于动态数组,LinkedList基于链表实现,底层是循环双向链表
2. 对于随机访问get和set,ArrayList优于LinkedList.
3. 对于新增add和删除remove,LinkedList比较快
hashtable扩容是 2x+1 默认初始长度:11 默认增长因子:0.75 【当现在拥有的元素数量>=阈值【长度*0.75】时,进行扩容】【hashtable不会出现满状态,当容器使用了超过或等于3/4时就扩容】
hashmap:默认初始长度:16 loadFactor[增长因子]:0.75
hashmap源码
final V putVal(int hash, K key, V value, boolean onlyIfAbsent,boolean evict) {
Node<K,V>[] tab; Node<K,V> p; int n, i;
if ((tab = table) == null || (n = tab.length) == 0)
n = (tab = resize()).length;
if ((p = tab[i = (n - 1) & hash]) == null)
tab[i] = newNode(hash, key, value, null);
else {
Node<K,V> e; K k;
if (p.hash == hash &&
((k = p.key) == key || (key != null && key.equals(k))))
e = p;
else if (p instanceof TreeNode)
e = ((TreeNode<K,V>)p).putTreeVal(this, tab, hash, key, value);
else {
for (int binCount = 0; ; ++binCount) {
if ((e = p.next) == null) {
p.next = newNode(hash, key, value, null);
if (binCount >= TREEIFY_THRESHOLD - 1) // -1 for 1st
treeifyBin(tab, hash);
break;
}
if (e.hash == hash &&
((k = e.key) == key || (key != null && key.equals(k))))
break;
p = e;
}
}
if (e != null) { // existing mapping for key
V oldValue = e.value;
if (!onlyIfAbsent || oldValue == null)
e.value = value;
afterNodeAccess(e);
return oldValue;
}
}
++modCount;
if (++size > threshold)
resize();
afterNodeInsertion(evict);
return null;
}
第五行的if ((p = tab[i = (n - 1) & hash]) == null)中的 i = (n - 1) & hash 等价与 hash%n
因为n是2的整数幂
这样子预算的效率高
eg:n=32 hash=34