mirror of
https://github.com/krahets/hello-algo.git
synced 2026-06-18 01:37:17 +08:00
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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user