Skip to content

Commit 574f45a

Browse files
committed
Merge remote-tracking branch 'origin/Rabin-Karp-Algo' into Rabin-Karp-Algo
2 parents 41ea5c1 + af911b1 commit 574f45a

File tree

61 files changed

+1818
-858
lines changed

Some content is hidden

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

61 files changed

+1818
-858
lines changed

DIRECTORY.md

+76-18
Large diffs are not rendered by default.

pmd-exclude.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ com.thealgorithms.datastructures.crdt.LWWElementSet=UselessParentheses
1212
com.thealgorithms.datastructures.crdt.Pair=UnusedPrivateField
1313
com.thealgorithms.datastructures.graphs.AStar=UselessParentheses
1414
com.thealgorithms.datastructures.graphs.AdjacencyMatrixGraph=CollapsibleIfStatements,UnnecessaryFullyQualifiedName,UselessParentheses
15-
com.thealgorithms.datastructures.graphs.BipartiteGrapfDFS=CollapsibleIfStatements
15+
com.thealgorithms.datastructures.graphs.BipartiteGraphDFS=CollapsibleIfStatements
1616
com.thealgorithms.datastructures.graphs.Kruskal=UselessParentheses
1717
com.thealgorithms.datastructures.hashmap.hashing.HashMapCuckooHashing=UselessParentheses
1818
com.thealgorithms.datastructures.heaps.FibonacciHeap=UselessParentheses

pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<dependency>
5151
<groupId>org.apache.commons</groupId>
5252
<artifactId>commons-lang3</artifactId>
53-
<version>3.16.0</version>
53+
<version>3.17.0</version>
5454
</dependency>
5555
<dependency>
5656
<groupId>org.apache.commons</groupId>
@@ -63,7 +63,7 @@
6363
<plugins>
6464
<plugin>
6565
<artifactId>maven-surefire-plugin</artifactId>
66-
<version>3.4.0</version>
66+
<version>3.5.0</version>
6767
<configuration>
6868
<forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory"/>
6969
</configuration>
@@ -118,14 +118,14 @@
118118
<dependency>
119119
<groupId>com.puppycrawl.tools</groupId>
120120
<artifactId>checkstyle</artifactId>
121-
<version>10.18.0</version>
121+
<version>10.18.1</version>
122122
</dependency>
123123
</dependencies>
124124
</plugin>
125125
<plugin>
126126
<groupId>com.github.spotbugs</groupId>
127127
<artifactId>spotbugs-maven-plugin</artifactId>
128-
<version>4.8.6.2</version>
128+
<version>4.8.6.3</version>
129129
<configuration>
130130
<excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile>
131131
<includeTests>true</includeTests>
@@ -146,7 +146,7 @@
146146
<plugin>
147147
<groupId>org.apache.maven.plugins</groupId>
148148
<artifactId>maven-pmd-plugin</artifactId>
149-
<version>3.24.0</version>
149+
<version>3.25.0</version>
150150
<configuration>
151151
<printFailingErrors>true</printFailingErrors>
152152
<includeTests>true</includeTests>

src/main/java/com/thealgorithms/datastructures/graphs/BipartiteGrapfDFS.java renamed to src/main/java/com/thealgorithms/datastructures/graphs/BipartiteGraphDFS.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
*
1515
* Output : YES
1616
*/
17-
public final class BipartiteGrapfDFS {
18-
private BipartiteGrapfDFS() {
17+
public final class BipartiteGraphDFS {
18+
private BipartiteGraphDFS() {
1919
}
2020

2121
private static boolean bipartite(int v, ArrayList<ArrayList<Integer>> adj, int[] color, int node) {

src/main/java/com/thealgorithms/dynamicprogramming/FordFulkerson.java renamed to src/main/java/com/thealgorithms/datastructures/graphs/FordFulkerson.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.dynamicprogramming;
1+
package com.thealgorithms.datastructures.graphs;
22

33
import java.util.LinkedList;
44
import java.util.Queue;

0 commit comments

Comments
 (0)