# Data Structure 目錄
###### tags: `Data Structure`
## Lists
1. [Array](https://hackmd.io/1aUUTe2bQCaQ4MqxzJRKsQ)
2. Linked List
a. Linked List
b. Circular Linked List
c. Doubly Linked List
d. Doubly Circular Linked List (最常用,包含上列所有的功能)
3. 下面兩種資料結構通常使用linked list或Array來實作:
a. Stack
b. Queue
## Hash
1. Hask Table
## Tree
1. Binary Tree
2. AVL Tree
3. red-black Tree
4. B-Tree/B+Tree
## Graph
1.