Skip to content

Commit 47287df

Browse files
authored
fix: broken Java links (#164)
1 parent 7c453db commit 47287df

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+50
-50
lines changed

en/Data Structures/Graph/Bellman-Ford.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ O(V^2)
9090

9191
#### Code Implementation Links
9292

93-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/DataStructures/Graphs/BellmanFord.java)
93+
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/datastructures/graphs/BellmanFord.java)
9494
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/bellman_ford.cpp)
9595
- [Python](https://github.com/TheAlgorithms/Python/blob/master/graphs/bellman_ford.py)
9696
- [C](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/bellman_ford.c)

en/Data Structures/Linked Lists/Doubly Linked List.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class LinkedList {
102102

103103
## Code Implementation Links
104104

105-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/DataStructures/Lists/DoublyLinkedList.java)
105+
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/datastructures/lists/DoublyLinkedList.java)
106106
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Data%20Structure/Doubly%20Linked%20List.cpp)
107107
- [Python](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/doubly_linked_list.py)
108108
- [Go](https://github.com/TheAlgorithms/Go/blob/master/data-structures/linked-list/double-linkedlist.go)

en/Data Structures/Linked Lists/Singly Linked List.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class LinkedList {
3939

4040
## Code Implementation Links
4141

42-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/DataStructures/Lists/SinglyLinkedList.java)
42+
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/datastructures/lists/SinglyLinkedList.java)
4343
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Data%20Structure/Linked%20List.cpp)
4444
- [Python](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/singly_linked_list.py)
4545
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/linked_lists/single_list.rb)

en/Dynamic Programming/Longest Common Subsequence.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ So the length of LCS is `dp[4][4] = 3`.
7171

7272
#### Code Implementation Links
7373

74-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/Dynamic%20Programming/LongestCommonSubsequence.java)
74+
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/dynamicprogramming/LongestCommonSubsequence.java)
7575
- [Python](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/longest_common_subsequence.py)
7676
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Dynamic%20Programming/Longest%20Common%20Subsequence.cpp)
7777

en/Search Algorithms/Binary Search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ A simple Binary Search implementation may return -1 as 9 is not present in the a
4040

4141
#### Code Implementation Links
4242

43-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/Searches/BinarySearch.java)
43+
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/searches/BinarySearch.java)
4444
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Search/Binary%20Search.cpp)
4545
- [Python](https://github.com/TheAlgorithms/Python/blob/master/searches/binary_search.py)
4646
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/searches/binary_search.cs)

en/Search Algorithms/Linear Search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Linear Search should return -1 as 6 is not present in the array
3535

3636
#### Code Implementation Links
3737

38-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/Searches/LinearSearch.java)
38+
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/searches/LinearSearch.java)
3939
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Search/Linear%20Search.cpp)
4040
- [Python](https://github.com/TheAlgorithms/Python/blob/master/searches/linear_search.py)
4141

en/Sorting Algorithms/Bubble Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Since there are no swaps in above steps, it means the array is sorted and we can
8181

8282
#### Code Implementation Links
8383

84-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/BubbleSort.java)
84+
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/sorts/BubbleSort.java)
8585
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/bubble_sort.cpp)
8686
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/bubble_sort.py)
8787
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/BubbleSorter.cs)

en/Sorting Algorithms/Heap Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ in top down manner.
5757

5858
#### Code Implementation Links
5959

60-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/HeapSort.java)
60+
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/sorts/HeapSort.java)
6161
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/heap_sort.cpp)
6262
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/heap_sort.py)
6363
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/heapsort.go)

en/Sorting Algorithms/Insertion Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ and elements from 11 to 13 will move one position ahead of their current positio
5050

5151
#### Code Implementation Links
5252

53-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/InsertionSort.java)
53+
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/sorts/InsertionSort.java)
5454
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/insertion_sort.c)
5555
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/insertion_sort.cpp)
5656
- [C#](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/InsertionSorter.cs)

en/Sorting Algorithms/Merge Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ At the next stack level [1, 2, 5, 9] and [3, 4, 6, 7] will be merged and we will
6161

6262
#### Code Implementation Links
6363

64-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/MergeSort.java)
64+
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/sorts/MergeSort.java)
6565
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/merge_sort.cpp)
6666
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/merge_sort.py)
6767
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/MergeSorter.cs)

0 commit comments

Comments
 (0)