refactor: change packages (#5430)

* refactor: change package

* refactor: fix name

---------

Co-authored-by: alxkm <alx@alx.com>
This commit is contained in:
Alex Klymenko
2024-08-30 11:58:24 +02:00
committed by GitHub
parent f8ff6af893
commit b0de93b3ce
10 changed files with 13 additions and 13 deletions

View File

@ -1,4 +1,4 @@
package com.thealgorithms.dynamicprogramming;
package com.thealgorithms.datastructures.graphs;
import java.util.LinkedList;
import java.util.Queue;

View File

@ -5,8 +5,8 @@ package com.thealgorithms.dynamicprogramming;
* supersequence of two given strings. The shortest supersequence is the smallest string
* that contains both given strings as subsequences.
*/
final class ShortestCommonSuperSequenceLength {
private ShortestCommonSuperSequenceLength() {
final class ShortestCommonSupersequenceLength {
private ShortestCommonSupersequenceLength() {
}
/**

View File

@ -1,4 +1,4 @@
package com.thealgorithms.others;
package com.thealgorithms.maths;
/**
* Utility class for computing

View File

@ -1,4 +1,4 @@
package com.thealgorithms.others;
package com.thealgorithms.maths;
import java.util.Arrays;

View File

@ -1,4 +1,4 @@
package com.thealgorithms.others;
package com.thealgorithms.strings;
/**
* Implementation of KnuthMorrisPratt algorithm Usage: see the main function

View File

@ -1,4 +1,4 @@
package com.thealgorithms.others;
package com.thealgorithms.strings;
import java.util.Scanner;