Skip to content

Commit d0ed0af

Browse files
committed
stop bubble sort revisiting already sorted elements
1 parent 3e0ac74 commit d0ed0af

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ export default class BubbleSort extends Sort {
77
// Clone original array to prevent its modification.
88
const array = originalArray.slice(0);
99

10-
for (let i = 0; i < array.length; i += 1) {
10+
for (let i = 1; i < array.length; i += 1) {
1111
swapped = false;
1212

1313
// Call visiting callback.
1414
this.callbacks.visitingCallback(array[i]);
1515

16-
for (let j = 0; j < array.length - 1; j += 1) {
16+
for (let j = 0; j < array.length - i; j += 1) {
1717
// Call visiting callback.
1818
this.callbacks.visitingCallback(array[j]);
1919

src/algorithms/sorting/bubble-sort/__test__/BubbleSort.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import {
99

1010
// Complexity constants.
1111
const SORTED_ARRAY_VISITING_COUNT = 20;
12-
const NOT_SORTED_ARRAY_VISITING_COUNT = 280;
13-
const REVERSE_SORTED_ARRAY_VISITING_COUNT = 400;
12+
const NOT_SORTED_ARRAY_VISITING_COUNT = 189;
13+
const REVERSE_SORTED_ARRAY_VISITING_COUNT = 209;
1414
const EQUAL_ARRAY_VISITING_COUNT = 20;
1515

1616
describe('BubbleSort', () => {

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy