Skip to content

Commit 3e57b0b

Browse files
authored
Update 2.selectionSort.md
1 parent 46ba2b7 commit 3e57b0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

2.selectionSort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function selectionSort($arr)
130130
## 8. C 代码实现
131131

132132
```c
133-
void SelectSort(int *data, int n)
133+
void selectSort(int *data, int n)
134134
{
135135
int i, j,t;
136136
int min_index;

0 commit comments

Comments
 (0)