BAEL-2797 new domain "math"created, sections moved

This commit is contained in:
anilkivilcim.eray
2019-04-03 00:37:24 +03:00
parent 0a8d9fe187
commit 94bf17615c
184 changed files with 717 additions and 218 deletions

View File

@@ -1,4 +1,4 @@
package com.baeldung.algorithms.bubblesort;
package com.baeldung.math.bubblesort;
import java.util.stream.IntStream;

View File

@@ -1,4 +1,4 @@
package com.baeldung.algorithms.heapsort;
package com.baeldung.math.heapsort;
import java.util.ArrayList;
import java.util.Arrays;

View File

@@ -1,4 +1,4 @@
package com.baeldung.algorithms.insertionsort;
package com.baeldung.math.insertionsort;
public class InsertionSort {

View File

@@ -1,4 +1,4 @@
package com.baeldung.algorithms.mergesort;
package com.baeldung.math.mergesort;
public class MergeSort {

View File

@@ -1,4 +1,4 @@
package com.baeldung.algorithms.quicksort;
package com.baeldung.math.quicksort;
public class QuickSort {

View File

@@ -1,4 +1,4 @@
package com.baeldung.algorithms.quicksort;
package com.baeldung.math.quicksort;
public class ThreeWayQuickSort {

View File

@@ -1,4 +1,4 @@
package com.baeldung.algorithms.bubblesort;
package com.baeldung.math.bubblesort;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;

View File

@@ -1,4 +1,4 @@
package com.baeldung.algorithms.heapsort;
package com.baeldung.math.heapsort;
import static org.assertj.core.api.Assertions.assertThat;

View File

@@ -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;

View File

@@ -1,4 +1,4 @@
package com.baeldung.algorithms.mergesort;
package com.baeldung.math.mergesort;
import org.junit.Assert;

View File

@@ -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;

View File

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