热文导读| 点击标题阅读
互联网寒冬下,程序员如何突围提升自己?
我为什么嫌弃RxJava,不再推荐使用?
字节跳动Android高工面试记,已拿 Offer 入职!
链接 :https://www.cnblogs.com/xdecode/p/9321848.html
经典的双链表结构, 适用于乱序插入, 删除. 指定序列操作则性能不如ArrayList, 这也是其数据结构决定的.
add(E) / addLast(E)
add(index, E) 这边有个小的优化, 他会先判断index是靠近队头还是队尾, 来确定从哪个方向遍历链入.1 if (index < (size >> 1)) {2 Node x = first;3 for (int i = 0; i < index; i++)4 x = x.next;5 return x;6 } else {7 Node x = last;8 for (int i = size - 1; i > index; i--)9 x = x.prev;10 return x;11 }if (index < (size >> 1)) {
2 Node x = first;
3 for (int i = 0; i < index; i++)
4 x = x.next;
5 return x;
6 } else {
7 Node x = last;
8 for (int i = size - 1; i > index; i--)
9 x = x.prev;
10 return x;
11 }
靠队尾
get(index)
也是会先判断index, 不过性能依然不好, 这也是为什么不推荐用for(int i = 0; i < lengh; i++)的方式遍历linkedlist, 而是使用iterator的方式遍历.remove(E)
底层就是一个数组, 因此按序查找快, 乱序插入, 删除因为涉及到后面元素移位所以性能慢.
add(index, E)
扩容一般默认容量是10, 扩容后, 会length*1.5.
remove(E)
循环遍历数组, 判断E是否equals当前元素, 删除性能不如LinkedList.push(E)
pop()
Stack的一个典型应用就是计算表达式如 9 + (3 - 1) * 3 + 10 / 2, 计算机将中缀表达式转为后缀表达式, 再对后缀表达式进行计算.
中缀转后缀
数字直接输出
栈为空时,遇到运算符,直接入栈
遇到左括号, 将其入栈
遇到右括号, 执行出栈操作,并将出栈的元素输出,直到弹出栈的是左括号,左括号不输出。
遇到运算符(加减乘除):弹出所有优先级大于或者等于该运算符的栈顶元素,然后将该运算符入栈
最终将栈中的元素依次出栈,输出。
计算后缀表达
运算得出的值即为表达式的结果
put(E)
put(E) 队列满了
1 final ReentrantLock lock = this.lock;2 lock.lockInterruptibly();3 try {4 while (count == items.length)5 notFull.await();6 enqueue(e);7 } finally {8 lock.unlock();9 }lock = this.lock;
2 lock.lockInterruptibly();
3 try {
4 while (count == items.length)
5 notFull.await();
6 enqueue(e);
7 } finally {
8 lock.unlock();
9 }
take()
当元素被取出后, 并没有对数组后面的元素位移, 而是更新takeIndex来指向下一个元素.
takeIndex是一个环形的增长, 当移动到队列尾部时, 会指向0, 再次循环.
1 private E dequeue() {2 // assert lock.getHoldCount() == 1;3 // assert items[takeIndex] != null;4 final Object[] items = this.items;5 @SuppressWarnings("unchecked")6 E x = (E) items[takeIndex];7 items[takeIndex] = null;8 if (++takeIndex == items.length)9 takeIndex = 0;10 count--;11 if (itrs != null)12 itrs.elementDequeued();13 notFull.signal();14 return x;15 }private E dequeue() {
2 // assert lock.getHoldCount() == 1;
3 // assert items[takeIndex] != null;
4 final Object[] items = this.items;
5 @SuppressWarnings("unchecked")
6 E x = (E) items[takeIndex];
7 items[takeIndex] = null;
8 if (++takeIndex == items.length)
9 takeIndex = 0;
10 count--;
11 if (itrs != null)
12 itrs.elementDequeued();
13 notFull.signal();
14 return x;
15 }
最常用的哈希表, 面试的童鞋必备知识了, 内部通过数组 + 单链表的方式实现. jdk8中引入了红黑树对长度 > 8的链表进行优化, 我们另外篇幅再讲.
put(K, V)put(K, V) 相同hash值
resize 动态扩容
当map中元素超出设定的阈值后, 会进行resize (length * 2)操作, 扩容过程中对元素一通操作, 并放置到新的位置. 具体操作如下:1 //定义两条链2 //原来的hash值新增的bit为0的链,头部和尾部3 Node loHead = null, loTail = null;4 //原来的hash值新增的bit为1的链,头部和尾部5 Node hiHead = null, hiTail = null;6 Node next;7 //循环遍历出链条链8 do {9 next = e.next;10 if ((e.hash & oldCap) == 0) {11 if (loTail == null)12 loHead = e;13 else14 loTail.next = e;15 loTail = e;16 }17 else {18 if (hiTail == null)19 hiHead = e;20 else21 hiTail.next = e;22 hiTail = e;23 }24 } while ((e = next) != null);25 //扩容前后位置不变的链26 if (loTail != null) {27 loTail.next = null;28 newTab[j] = loHead;29 }30 //扩容后位置加上原数组长度的链31 if (hiTail != null) {32 hiTail.next = null;33 newTab[j + oldCap] = hiHead;34 }//定义两条链
2 //原来的hash值新增的bit为0的链,头部和尾部
3 Node loHead = null, loTail = null;
4 //原来的hash值新增的bit为1的链,头部和尾部
5 Node hiHead = null, hiTail = null;
6 Node next;
7 //循环遍历出链条链
8 do {
9 next = e.next;
10 if ((e.hash & oldCap) == 0) {
11 if (loTail == null)
12 loHead = e;
13 else
14 loTail.next = e;
15 loTail = e;
16 }
17 else {
18 if (hiTail == null)
19 hiHead = e;
20 else
21 hiTail.next = e;
22 hiTail = e;
23 }
24 } while ((e = next) != null);
25 //扩容前后位置不变的链
26 if (loTail != null) {
27 loTail.next = null;
28 newTab[j] = loHead;
29 }
30 //扩容后位置加上原数组长度的链
31 if (hiTail != null) {
32 hiTail.next = null;
33 newTab[j + oldCap] = hiHead;
34 }
put(K, V)
get(K) accessOrder为false的时候, 直接返回元素就行了, 不需要调整位置. accessOrder为true的时候, 需要将最近访问的元素, 放置到队尾. removeEldestEntry 删除最老的元素更多学习和讨论,欢迎加入我们的知识星球,这里有1000+小伙伴,让你的学习不寂寞~·
看完本文有收获?请转发分享给更多人
我们的知识星球第三期开期了,已达到1100人了,能连续做三期已很不容易了,有很多老用户续期,目前续期率达到50%,说明了大家对我们的知识星球还是很认可的,欢迎大家加入尽早我们的知识星球,更多星球信息参见:
欢迎加入Java和Android架构社群
如何进阶成为Java的Android版和架构师?
说两件事
微信扫描或者点击上方二维码领取的Android \ Python的\ AI \的Java等高级进阶资源
更多学习资料点击下面的“阅读原文 ”获取
谢谢老板,点个好看↓