hello-algo/codes/go/chapter_array_and_linkedlist
龚国玮 b1be0aab15 docs(array): sample code for golang
本次提交包含如下示例代码。
- 遍历数组;
- 初始化数组;
- 扩展数组长度;
- 在数组中查找指定元素;
- 随机返回一个数组元素;
- 删除索引 index 处元素;
- 在数组的索引 index 处插入元素 num。

所有数组约定长度为 5。原因如下:
在 goalng 中,必须声明数组的长度,例如:nums := [5]int{1,2,3,4,5}。如果不声明长度,则被称为切片。

使用的注释没有按照 golang 的编程惯例,而是倾向于使用文档上下文的注释约定。
所以所有函数注释均使用了 `/* ... */`,而不是双斜杠 `//`。
2022-12-27 11:25:30 +08:00
..
array.go docs(array): sample code for golang 2022-12-27 11:25:30 +08:00
array_test.go docs(array): sample code for golang 2022-12-27 11:25:30 +08:00
list_test.go fixed clear list in Go 2022-12-18 21:57:29 +08:00
my_list.go Fix my list. 2022-12-25 12:58:35 +08:00
my_list_test.go list using go 2022-12-18 14:55:14 +08:00