Skip to content

Commit 61f8e5a

Browse files
authored
Update README.md
1 parent dc4b770 commit 61f8e5a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#### Data Structures:
1+
### Data Structures:
22

33
* [Matrix](https://github.com/RincLiu/Go-Algorithm/blob/master/data-structures/matrix/matrix.go):
44

@@ -79,7 +79,7 @@ func (graph *Graph) DijkstraShortestPath(startVertex *Vertex, endVertex *Vertex)
7979
func (graph *Graph) TopologicalSort() {}
8080
```
8181

82-
#### Sorting Algorithms:
82+
### Sorting Algorithms:
8383

8484
* [BubbleSort](https://github.com/RincLiu/Go-Algorithm/blob/master/algorithms/sort/bubble-sort.go):
8585

@@ -107,7 +107,7 @@ func SelectSort(array []int) {}
107107
func QucikSort(array []int) {}
108108
```
109109

110-
#### Searching Algorithms:
110+
### Searching Algorithms:
111111

112112
* [BinarySearch](https://github.com/RincLiu/Go-Algorithm/blob/master/algorithms/search/binary-search.go):
113113

@@ -116,7 +116,7 @@ func RecursionBinarySearch(sorted_array []int, target int) int {}
116116
func NonRecursionBinarySearch(sorted_array []int, target int) int {}
117117
```
118118

119-
#### String Algorithms:
119+
### String Algorithms:
120120

121121
* [Single Pattern Search](https://github.com/RincLiu/Go-Algorithm/blob/master/string/single-pattern-search.go):
122122

0 commit comments

Comments
 (0)