| 
						
					 | 
					
						
						
							
						
						e5497496f9
					 | 
					
						
						
							
							Update array.md
						
						
						
						
						
						
					 | 
					
						2022-12-30 16:45:40 +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 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						8733557f00
					 | 
					
						
						
							
							Update C# code.
						
						
						
						
						
						
					 | 
					
						2022-12-24 17:05:58 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						b1645c7d7e
					 | 
					
						
						
							
							Fine tune
						
						
						
						
						
						
					 | 
					
						2022-12-24 16:15:41 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						a427cb1b4d
					 | 
					
						
						
							
							完善所以c#相关的文档和代码
						
						
						
						
						
						
					 | 
					
						2022-12-23 15:42:02 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						f3ef226874
					 | 
					
						
						
							
							Remove the spaces between “ ” and 中文 aside.
						
						
						
						
						
						
					 | 
					
						2022-12-21 01:37:58 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						a8fb1a4f41
					 | 
					
						
						
							
							Update source codes.
						
						
						
						
						
						
					 | 
					
						2022-12-20 13:20:20 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						030042e689
					 | 
					
						
						
							
							Update array.md
						
						
						
						
						
						
						
						数组插入应该取不到索引值才对 
						
						
					 | 
					
						2022-12-20 00:21:52 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						4fa41ce08a
					 | 
					
						
						
							
							fixed clear list in Go
						
						
						
						
						
						
					 | 
					
						2022-12-18 21:57:29 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						71c3ed70a4
					 | 
					
						
						
							
							Merge branch 'master' of https://github.com/msk397/hello-algo
						
						
						
						
						
						
					 | 
					
						2022-12-18 14:55:19 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						c5f7faaf15
					 | 
					
						
						
							
							list using go
						
						
						
						
						
						
					 | 
					
						2022-12-18 14:55:14 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						0a0374efa0
					 | 
					
						
						
							
							Update linked_list.md to add csharp code.
						
						
						
						
						
						
					 | 
					
						2022-12-16 16:37:37 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						94f66d3f06
					 | 
					
						
						
							
							Update C# array code and doc
						
						
						
						
						
						
						
						Add some comments and make code specification 
						
						
					 | 
					
						2022-12-14 15:11:25 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						d61196de3a
					 | 
					
						
						
							
							Update array.md,fix md formatting errors
						
						
						
						
						
						
						
						Fix md formatting errors 
						
						
					 | 
					
						2022-12-14 11:22:14 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						92aa96d8f7
					 | 
					
						
						
							
							Update array.md Add the C# code to docs ( Chapter of Array)
						
						
						
						
						
						
						
						Add the C# code to docs ( Chapter of Array) 
						
						
					 | 
					
						2022-12-14 11:03:28 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						e038eb4f24
					 | 
					
						
						
							
							Merge branch 'dev' of github.com:justin-tse/hello-algo into justin-tse-dev
						
						
						
						
						
						
					 | 
					
						2022-12-13 00:06:18 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						dc3ac1fae6
					 | 
					
						
						
							
							add ;
						
						
						
						
						
						
					 | 
					
						2022-12-12 21:39:48 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						aceed8f87f
					 | 
					
						
						
							
							Add JavaScript code to docs (Chapter of list)
						
						
						
						
						
						
					 | 
					
						2022-12-12 21:30:55 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						0688cf874c
					 | 
					
						
						
							
							Add JavaScript code to docs (Chapter of linked_list)
						
						
						
						
						
						
					 | 
					
						2022-12-12 21:26:56 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						5fbdff1b41
					 | 
					
						
						
							
							Update JavaScript and TypeScript code to docs (Chapter of Array)
						
						
						
						
						
						
					 | 
					
						2022-12-12 21:25:07 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						885be1e46c
					 | 
					
						
						
							
							add remaining code for Array and LinkedList
						
						
						
						
						
						
					 | 
					
						2022-12-12 21:05:36 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						a58235cef9
					 | 
					
						
						
							
							Merge c5b6566f4e46565e19857ac8bdb51931c096a923
						
						
						
						
						
						
					 | 
					
						2022-12-12 03:22:40 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						122b0eca26
					 | 
					
						
						
							
							Update figures.
						
						
						
						
						
						
					 | 
					
						2022-12-10 02:29:44 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						c8336df86d
					 | 
					
						
						
							
							Fix array.md
						
						
						
						
						
						
					 | 
					
						2022-12-09 21:47:24 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						47db74892d
					 | 
					
						
						
							
							Add TypeScript code to docs (Chapter of Array)
						
						
						
						
						
						
					 | 
					
						2022-12-04 18:00:44 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						ebf9024136
					 | 
					
						
						
							
							Add Go codes to docs, including
						
						
						
						
						
						
						
						the chapter of stack and queue, the chapter of tree. 
						
						
					 | 
					
						2022-12-03 20:25:24 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						9bd5980a81
					 | 
					
						
						
							
							Organizing all the code blocks.
						
						
						
						
						
						
					 | 
					
						2022-12-03 01:31:29 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						e20bc251f5
					 | 
					
						
						
							
							Add python code of chapter queue to docs.
						
						
						
						
						
						
					 | 
					
						2022-12-02 00:09:34 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						8669e06414
					 | 
					
						
						
							
							Update stack and queue.
						
						
						
						
						
						
					 | 
					
						2022-11-30 02:27:26 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						c1d2e0de09
					 | 
					
						
						
							
							Modify a naming of JavaScript.
						
						
						
						
						
						
					 | 
					
						2022-11-27 20:16:41 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						1c68a860f8
					 | 
					
						
						
							
							Merge branch 'js-dev'
						
						
						
						
						
						
					 | 
					
						2022-11-27 20:10:57 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						0c24343ad7
					 | 
					
						
						
							
							Add an imortant tip.
						
						
						
						
						
						
					 | 
					
						2022-11-27 20:00:03 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						731e98fc25
					 | 
					
						
						
							
							Add C++ codes for the chapter
						
						
						
						
						
						
						
						array and linked list. 
						
						
					 | 
					
						2022-11-27 19:07:35 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						d62d8a4916
					 | 
					
						
						
							
							add javascript array
						
						
						
						
						
						
					 | 
					
						2022-11-27 18:33:53 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						cbf4ab0aaa
					 | 
					
						
						
							
							Add Python codes for the chapter
						
						
						
						
						
						
						
						of array and linked list. 
						
						
					 | 
					
						2022-11-25 03:59:38 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						faba5af781
					 | 
					
						
						
							
							Update README
						
						
						
						
						
						
					 | 
					
						2022-11-23 15:50:59 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 | 
				
			
				
					| 
						
					 | 
					
						
						
							
						
						33d79ea6da
					 | 
					
						
						
							
							Update docs for deployment on Vercel.
						
						
						
						
						
						
					 | 
					
						2022-11-22 17:47:26 +08:00 | 
					
					
						
						
						
							
							
							
							
							
							
							
							
						
					 |