Skip to content

Commit 036341f

Browse files
committed
chore: move HeavyLightDecomposition to datastructures/trees (#7453)
1 parent ae861d6 commit 036341f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/thealgorithms/tree/HeavyLightDecomposition.java renamed to src/main/java/com/thealgorithms/datastructures/trees/HeavyLightDecomposition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.tree;
1+
package com.thealgorithms.datastructures.trees;
22

33
import java.util.ArrayList;
44
import java.util.List;

src/test/java/com/thealgorithms/tree/HeavyLightDecompositionTest.java renamed to src/test/java/com/thealgorithms/datastructures/trees/HeavyLightDecompositionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.tree;
1+
package com.thealgorithms.datastructures.trees;
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
44
import static org.junit.jupiter.api.Assertions.assertTrue;

0 commit comments

Comments
 (0)