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; // Array for storing queue elements
int front; // Front pointer, points to the front of the queue element
int queSize; // Rear pointer, points to rear + 1
int queSize; // Current number of elements in the queue
int queCapacity; // Queue capacity
} ArrayQueue;
@@ -131,4 +131,4 @@ int main() {
delArrayQueue(queue);
return 0;
}
}