BAEL-2797 new domain "math"created, sections moved
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.algorithms.bubblesort;
|
||||
package com.baeldung.math.bubblesort;
|
||||
|
||||
import java.util.stream.IntStream;
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.algorithms.heapsort;
|
||||
package com.baeldung.math.heapsort;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.algorithms.insertionsort;
|
||||
package com.baeldung.math.insertionsort;
|
||||
|
||||
public class InsertionSort {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.algorithms.mergesort;
|
||||
package com.baeldung.math.mergesort;
|
||||
|
||||
public class MergeSort {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.algorithms.quicksort;
|
||||
package com.baeldung.math.quicksort;
|
||||
|
||||
public class QuickSort {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.algorithms.quicksort;
|
||||
package com.baeldung.math.quicksort;
|
||||
|
||||
public class ThreeWayQuickSort {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.algorithms.bubblesort;
|
||||
package com.baeldung.math.bubblesort;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.algorithms.heapsort;
|
||||
package com.baeldung.math.heapsort;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package com.baeldung.algorithms.insertionsort;
|
||||
package com.baeldung.math.insertionsort;
|
||||
|
||||
import com.baeldung.algorithms.insertionsort.InsertionSort;
|
||||
import com.baeldung.math.insertionsort.InsertionSort;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.assertArrayEquals;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.algorithms.mergesort;
|
||||
package com.baeldung.math.mergesort;
|
||||
|
||||
import org.junit.Assert;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package com.baeldung.algorithms.quicksort;
|
||||
package com.baeldung.math.quicksort;
|
||||
|
||||
import com.baeldung.algorithms.quicksort.QuickSort;
|
||||
import com.baeldung.math.quicksort.QuickSort;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.algorithms.quicksort;
|
||||
package com.baeldung.math.quicksort;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
Reference in New Issue
Block a user