feat: add array C docs (#352)

* feat: add arry C docs

* fix: change remove to removeItem

* Update array.md

---------

Co-authored-by: Yudong Jin <krahets@163.com>
pull/360/head
Guanngxu 2 years ago committed by GitHub
parent 300016393b
commit 0aea04f142
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -70,7 +70,8 @@ comments: true
=== "C" === "C"
```c title="array.c" ```c title="array.c"
int arr[5] = { 0 }; // { 0, 0, 0, 0, 0 }
int nums[5] = { 1, 3, 2, 5, 4 };
``` ```
=== "C#" === "C#"
@ -153,7 +154,7 @@ elementAddr = firtstElementAddr + elementLength * elementIndex
=== "C" === "C"
```c title="array.c" ```c title="array.c"
[class]{}-[func]{randomAccess}
``` ```
=== "C#" === "C#"
@ -217,7 +218,7 @@ elementAddr = firtstElementAddr + elementLength * elementIndex
=== "C" === "C"
```c title="array.c" ```c title="array.c"
[class]{}-[func]{extend}
``` ```
=== "C#" === "C#"
@ -299,7 +300,9 @@ elementAddr = firtstElementAddr + elementLength * elementIndex
=== "C" === "C"
```c title="array.c" ```c title="array.c"
[class]{}-[func]{insert}
[class]{}-[func]{removeItem}
``` ```
=== "C#" === "C#"
@ -369,7 +372,7 @@ elementAddr = firtstElementAddr + elementLength * elementIndex
=== "C" === "C"
```c title="array.c" ```c title="array.c"
[class]{}-[func]{traverse}
``` ```
=== "C#" === "C#"
@ -431,7 +434,7 @@ elementAddr = firtstElementAddr + elementLength * elementIndex
=== "C" === "C"
```c title="array.c" ```c title="array.c"
[class]{}-[func]{find}
``` ```
=== "C#" === "C#"

Loading…
Cancel
Save