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

View File

@@ -10,7 +10,7 @@
typedef struct {
int *nums; // キュー要素を格納する配列
int front; // 先頭ポインタ。先頭要素を指す
int queSize; // 末尾ポインタ。キューの末尾 + 1 を指す
int queSize; // 現在のキュー内の要素数
int queCapacity; // キューの容量
} ArrayQueue;
@@ -131,4 +131,4 @@ int main() {
delArrayQueue(queue);
return 0;
}
}