docs: update the whole repository

* fix some bugs
* delete duplicate files
* format code
This commit is contained in:
yanglbme
2019-05-09 19:32:54 +08:00
parent 163db8521a
commit 29948363da
368 changed files with 4372 additions and 30841 deletions

View File

@ -3,10 +3,8 @@ package Sorts;
import static Sorts.SortUtils.*;
/**
*
* @author Varun Upadhyay (https://github.com/varunu28)
* @author Podshivalov Nikita (https://github.com/nikitap492)
*
* @see SortAlgorithm
*/
@ -15,17 +13,17 @@ class BubbleSort implements SortAlgorithm {
* This method implements the Generic Bubble Sort
*
* @param array The array to be sorted
* Sorts the array in increasing order
* Sorts the array in increasing order
**/
@Override
public <T extends Comparable<T>> T[] sort(T array[]) {
public <T extends Comparable<T>> T[] sort(T array[]) {
int last = array.length;
//Sorting
boolean swap;
do {
swap = false;
for (int count = 0; count < last-1; count++) {
for (int count = 0; count < last - 1; count++) {
if (less(array[count], array[count + 1])) {
swap = swap(array, count, count + 1);
}
@ -47,7 +45,7 @@ class BubbleSort implements SortAlgorithm {
print(integers);
// String Input
String[] strings = {"c", "a", "e", "b","d"};
String[] strings = {"c", "a", "e", "b", "d"};
//Output => e, d, c, b, a
print(bubbleSort.sort(strings));