8000 Update Merge Sort.md · us1415/Algorithms-Explanation@e29c6b4 · GitHub
[go: up one dir, main page]

Skip to content

Commit e29c6b4

Browse files
authored
Update Merge Sort.md
1 parent 3f00af0 commit e29c6b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sorting Algorithms/Merge Sort.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ Now merge both these halves to get the sorted array [0, 1, 2, 3, 5, 9]
3333

3434
#### Code Implementation Links
3535

36-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/src/sort/MergeSort.java)
36+
- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/MergeSort.java)
3737
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Merge%20Sort.cpp)
3838
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/merge_sort.py)
3939
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/sorts/merge_sort.cs)
40-
- [C](https://github.com/TheAlgorithms/C/blob/master/Sorts/mergesort.c)
40+
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/mergesort.c)
4141

4242
#### Video Explanation
4343

0 commit comments

Comments
 (0)
0