Yudong Jin
fcbaf101a4
Several bug fixes and improvements ( #945 )
...
* Update Dockerfile for code debugging.
* Format Python code using Black.
* Improve dark theme by defining html classes for the figures, animations and cover images.
* Fix several glossary translation.
* Update a code comment.
* Fix climbing_stairs_backtrack: the pruning should not require the sorted choices list.
* Update the code of array and list traversal.
* Fix a rendering issue of README.md
* Update code of list traversal.
* Fix array_definition.png
* Update README.md
* Fix max_capacity_moving_short_board.png
* Fix array.dart
* Fix array.dart
* Fix array.dart
* Fix array.dart
1 year ago
krahets
346c8451de
Fix code naming style.
1 year ago
krahets
fb552987f5
Update variable names in list and my_list
1 year ago
krahets
dd72335235
Format C, C++, C#, Go, Java, Python, Rust code.
1 year ago
krahets
c310edb672
Polish the chapter of array and linkedlist
1 year ago
krahets
54dc288e61
1. Remove Pair class from hash coliision code.
...
2. Fix the comment in my_list code.
3. Add a Q&A to the summary of sorting.
1 year ago
krahets
504dff1728
Fix "函数" and "方法"
1 year ago
krahets
6377e3316a
Fix a comment in my_list.xx
1 year ago
Yudong Jin
1c8b7ef559
refactor: Replace 结点 with 节点 ( #452 )
...
* Replace 结点 with 节点
Update the footnotes in the figures
* Update mindmap
* Reduce the size of the mindmap.png
2 years ago
krahets
9ea24e8b26
Change the operations sequence of the likedlist's insert() method.
2 years ago
krahets
300016393b
Add code source blocks to the chapter Graph.
...
Fix "函数" and "方法"
2 years ago
Yudong Jin
ddd5562b60
Fix the index out of bound check in my_list.
2 years ago
龚国玮
1cb6e25cfe
fix(go): linked list test name is misspelled
2 years ago
Yudong Jin
d6d6a16c7e
Update the access() function of linked_list
2 years ago
reanon
b73ac7bf4b
style(go): fix go code style
...
Make the classes and methods in the package private, in case misuse
2 years ago
Yudong Jin
30b4ab6ba7
Update array (Go).
2 years ago
Yudong Jin
5cb62fd458
Update the array (Go code).
2 years ago
Yudong Jin
1f1c58519d
Update the array and linked list (Go code).
2 years ago
Yudong Jin
82b8a5da39
Merge branch 'master' into master
2 years ago
Yudong Jin
bacf8553c5
Update linked_list.go
2 years ago
Yudong Jin
ae78126d80
Update array.go
2 years ago
陈国太
cd9f4fc35d
fix(array and linkedlist): fix that the printing in the test function is the same as that in other languages
2 years ago
Cathay
1faad9e187
Merge branch 'master' of github.com:Cathay-Chen/hello-algo
2 years ago
Cathay
1062fe64a3
feat(linked_list): add the Go code to linked_list docs (Chapter of Array and LinkedList)
2 years ago
Cathay
b3e3aa1e72
Merge branch 'krahets:master' into master
2 years ago
Cathay
c0e8b75bfd
feat(array): add the Go code to array docs (Chapter of Array and LinkedList)
2 years ago
龚国玮
4fb267918b
docs(array): add file author, created time
2 years ago
龚国玮
f0c3bf5766
docs(array): reduce understanding cost
...
- 去除了并行测试;
- 基于 Java 代码样例,统一了命名风格;
- 基于 Go link 模块代码样例,统一了测试用例风格;
- 我们将 Go 中的 Slice 切片看作 Array 数组。因为这样可以降低理解成本,利于我们将关注点放在数据结构与算法上。
2 years ago
龚国玮
b1be0aab15
docs(array): sample code for golang
...
本次提交包含如下示例代码。
- 遍历数组;
- 初始化数组;
- 扩展数组长度;
- 在数组中查找指定元素;
- 随机返回一个数组元素;
- 删除索引 index 处元素;
- 在数组的索引 index 处插入元素 num。
所有数组约定长度为 5。原因如下:
在 goalng 中,必须声明数组的长度,例如:nums := [5]int{1,2,3,4,5}。如果不声明长度,则被称为切片。
使用的注释没有按照 golang 的编程惯例,而是倾向于使用文档上下文的注释约定。
所以所有函数注释均使用了 `/* ... */`,而不是双斜杠 `//`。
2 years ago
Yudong Jin
01b6c8bb0a
Fix my list.
2 years ago
machangxin
4fa41ce08a
fixed clear list in Go
2 years ago
machangxin
c5f7faaf15
list using go
2 years ago