Sync multilingual versions (#1875)

* Sync multilingual docs and comments

* Refactor zensical extra.css

* Refine zensical styles

* Tune zensical landing buttons

* Refine landing section themes
This commit is contained in:
Yudong Jin
2026-03-31 18:31:56 +08:00
committed by GitHub
parent 323eb92c0f
commit e3c74cfa01
15 changed files with 366 additions and 442 deletions
@@ -10,7 +10,7 @@
typedef struct {
int *nums; // 用於儲存佇列元素的陣列
int front; // 佇列首指標,指向佇列首元素
int queSize; // 尾指標,指向佇列尾 + 1
int queSize; // 當前佇列的元素數量
int queCapacity; // 佇列容量
} ArrayQueue;