Skip to content

Commit 5320bfc

Browse files
committedApr 12, 2018
Add BubbleSort.
1 parent 0224afb commit 5320bfc

File tree

4 files changed

+87
-51
lines changed

4 files changed

+87
-51
lines changed
 

‎src/algorithms/sorting/SortTester.js

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
export const sortedArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
2-
export const notSortedArray = [10, 5, 30, -1, 0, 0, 1, 2, -3, 2];
3-
export const equalArray = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1];
1+
export const sortedArr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20];
2+
export const reverseArr = [20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1];
3+
export const notSortedArr = [15, 8, 5, 12, 10, 1, 16, 9, 11, 7, 20, 3, 2, 6, 17, 18, 4, 13, 14, 19];
4+
export const equalArr = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1];
45

56
export class SortTester {
67
static testSort(SortingClass) {
@@ -11,9 +12,10 @@ export class SortTester {
1112
expect(sorter.sort([1, 2])).toEqual([1, 2]);
1213
expect(sorter.sort([2, 1])).toEqual([1, 2]);
1314
expect(sorter.sort([1, 1, 1])).toEqual([1, 1, 1]);
14-
expect(sorter.sort(sortedArray)).toEqual([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
15-
expect(sorter.sort(notSortedArray)).toEqual([-3, -1, 0, 0, 1, 2, 2, 5, 10, 30]);
16-
expect(sorter.sort(equalArray)).toEqual([1, 1, 1, 1, 1, 1, 1, 1, 1, 1]);
15+
expect(sorter.sort(sortedArr)).toEqual(sortedArr);
16+
expect(sorter.sort(reverseArr)).toEqual(sortedArr);
17+
expect(sorter.sort(notSortedArr)).toEqual(sortedArr);
18+
expect(sorter.sort(equalArr)).toEqual(equalArr);
1719
}
1820

1921
static testSortWithCustomComparator(SortingClass) {

‎src/algorithms/sorting/bubble-sort/BubbleSort.js

+13
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ import Sort from '../Sort';
22

33
export default class BubbleSort extends Sort {
44
sort(initialArray) {
5+
// Flag that holds info about whether the swap has occur or not.
6+
let swapped = false;
57
const array = initialArray;
68

79
for (let i = 0; i < array.length; i += 1) {
10+
swapped = false;
11+
812
for (let j = 0; j < array.length - 1; j += 1) {
913
// Call visiting callback.
1014
this.callbacks.visitingCallback(array[j]);
@@ -14,8 +18,17 @@ export default class BubbleSort extends Sort {
1418
const tmp = array[j + 1];
1519
array[j + 1] = array[j];
1620
array[j] = tmp;
21+
22+
// Register the swap.
23+
swapped = true;
1724
}
1825
}
26+
27+
// If there were no swaps then array is already sorted and there is
28+
// no need to proceed.
29+
if (!swapped) {
30+
return array;
31+
}
1932
}
2033

2134
return array;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
import BubbleSort from '../BubbleSort';
2+
import {
3+
equalArr,
4+
notSortedArr,
5+
reverseArr,
6+
sortedArr,
7+
SortTester,
8+
} from '../../SortTester';
9+
10+
describe('BubbleSort', () => {
11+
it('should sort array', () => {
12+
SortTester.testSort(BubbleSort);
13+
});
14+
15+
it('should sort array with custom comparator', () => {
16+
SortTester.testSortWithCustomComparator(BubbleSort);
17+
});
18+
19+
it('should visit sorted array element specified number of times', () => {
20+
const visitingCallback = jest.fn();
21+
22+
const callbacks = { visitingCallback };
23+
const sorter = new BubbleSort(callbacks);
24+
25+
const arrayAfterSorting = sorter.sort(sortedArr);
26+
27+
expect(arrayAfterSorting).toEqual(sortedArr);
28+
expect(visitingCallback).toHaveBeenCalledTimes(19);
29+
});
30+
31+
it('should visit not-sorted array element specified number of times', () => {
32+
const visitingCallback = jest.fn();
33+
34+
const callbacks = { visitingCallback };
35+
const sorter = new BubbleSort(callbacks);
36+
37+
const arrayAfterSorting = sorter.sort(notSortedArr);
38+
39+
expect(arrayAfterSorting).toEqual(sortedArr);
40+
expect(visitingCallback).toHaveBeenCalledTimes(19);
41+
});
42+
43+
it('should visit equal array element specified number of times', () => {
44+
const visitingCallback = jest.fn();
45+
46+
const callbacks = { visitingCallback };
47+
const sorter = new BubbleSort(callbacks);
48+
49+
const arrayAfterSorting = sorter.sort(equalArr);
50+
51+
expect(arrayAfterSorting).toEqual(equalArr);
52+
expect(visitingCallback).toHaveBeenCalledTimes(19);
53+
});
54+
55+
it('should visit reverse sorted array element specified number of times', () => {
56+
const visitingCallback = jest.fn();
57+
58+
const callbacks = { visitingCallback };
59+
const sorter = new BubbleSort(callbacks);
60+
61+
const arrayAfterSorting = sorter.sort(reverseArr);
62+
63+
expect(arrayAfterSorting).toEqual(sortedArr);
64+
expect(visitingCallback).toHaveBeenCalledTimes(19);
65+
});
66+
});

‎src/algorithms/sorting/bubble-sort/__test__/bubbleSort.test.js

-45
This file was deleted.

0 commit comments

Comments
 (0)