Rename folder

This commit is contained in:
helga_sh 2020-07-06 17:49:10 +03:00
parent 4f6c33f935
commit 53ffdd9f3d
5 changed files with 4 additions and 8 deletions

View File

@ -1,4 +1,4 @@
package com.baeldung.algorithms.topnelements;
package com.baeldung.algorithms.topkelements;
import java.util.ArrayList;
import java.util.List;

View File

@ -1,4 +1,4 @@
package com.baeldung.algorithms.topnelements;
package com.baeldung.algorithms.topkelements;
import java.util.ArrayList;
import java.util.Collections;

View File

@ -1,4 +1,4 @@
package com.baeldung.algorithms.topnelements;
package com.baeldung.algorithms.topkelements;
import java.util.List;

View File

@ -1,4 +1,4 @@
package com.baeldung.algorithms.topnelements;
package com.baeldung.algorithms.topkelements;
import java.util.Comparator;
import java.util.List;

View File

@ -1,9 +1,5 @@
package com.baeldung.algorithms.topkelements;
import com.baeldung.algorithms.topnelements.BruteForceTopKElementsFinder;
import com.baeldung.algorithms.topnelements.MaxHeapTopKElementsFinder;
import com.baeldung.algorithms.topnelements.TopKElementsFinder;
import com.baeldung.algorithms.topnelements.TreeSetTopKElementsFinder;
import org.junit.Test;
import java.util.Arrays;