```mermaid actions={false}
%%{init: {
"theme": "base",
"themeVariables": {
"background": "#0b0b0c",
"lineColor": "#8b8f97"
},
"flowchart": {
"defaultRenderer": "elk",
"nodeSpacing": 28,
"rankSpacing": 54,
"padding": 10
}
}}%%
flowchart TB
ROOT["数据结构与算法"]
ROOT --> ARRAY["数组"]
ROOT --> LINKED["链表"]
classDef done fill:#16181d,color:#f3f4f6,stroke:#22c55e,stroke-width:1.8px,rx:10,ry:10;
classDef progress fill:#16181d,color:#f3f4f6,stroke:#eab308,stroke-width:1.8px,rx:10,ry:10;
classDef todo fill:#16181d,color:#f3f4f6,stroke:#ef4444,stroke-width:1.8px,rx:10,ry:10;
class ARRAY done;
class LINKED progress;
class ROOT todo;
```