Merge pull request #8826 from eugenp/BAEL-3454

BAEL-3454: Moved AVLTree to data-structures module
This commit is contained in:
Eric Martin 2020-03-07 21:25:16 -06:00 committed by GitHub
commit 54dfe2eda6
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
package com.baeldung.algorithms.balancedbinarytree;
package com.baeldung.avltree;
public class AVLTree {

View File

@ -1,4 +1,4 @@
package com.baeldung.algorithms.balancedbinarytree;
package com.baeldung.avltree;
import org.junit.Assert;
import org.junit.Test;