Yudong Jin
|
5cb62fd458
|
Update the array (Go code).
|
2023-01-02 19:03:36 +08:00 |
|
Yudong Jin
|
1f1c58519d
|
Update the array and linked list (Go code).
|
2023-01-02 18:59:35 +08:00 |
|
Yudong Jin
|
82b8a5da39
|
Merge branch 'master' into master
|
2023-01-02 18:53:33 +08:00 |
|
Yudong Jin
|
ae78126d80
|
Update array.go
|
2022-12-30 16:44:09 +08:00 |
|
陈国太
|
cd9f4fc35d
|
fix(array and linkedlist): fix that the printing in the test function is the same as that in other languages
|
2022-12-29 21:49:46 +08:00 |
|
Cathay
|
c0e8b75bfd
|
feat(array): add the Go code to array docs (Chapter of Array and LinkedList)
|
2022-12-29 13:26:09 +08:00 |
|
龚国玮
|
4fb267918b
|
docs(array): add file author, created time
|
2022-12-29 10:06:11 +08:00 |
|
龚国玮
|
f0c3bf5766
|
docs(array): reduce understanding cost
- 去除了并行测试;
- 基于 Java 代码样例,统一了命名风格;
- 基于 Go link 模块代码样例,统一了测试用例风格;
- 我们将 Go 中的 Slice 切片看作 Array 数组。因为这样可以降低理解成本,利于我们将关注点放在数据结构与算法上。
|
2022-12-28 10:46:12 +08:00 |
|
龚国玮
|
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 |
|