进阶day03-LinkedList的特点和基本使用

This commit is contained in:
2026-01-31 16:57:43 +08:00
parent 080ac11a06
commit 7889ce4381
3 changed files with 76 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package com.inmind.list01;
/*
栈结构:先进后出
队列:先进先出
数组:连续空间长度固定,查询快,增删慢
链表:离散的,查询慢,增删快
红黑树:高效的查询数据结构
*/
public class Demo03 {
}