Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the insertion sort #86

Merged
merged 25 commits into from
Jul 3, 2018
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
d37adad
Fix LinkedList
MikhailMaksyutin Jun 1, 2018
2e8e215
Merge branch 'master' into master
trekhleb Jun 2, 2018
63da40b
Merge remote-tracking branch 'upstream/master'
m-maksyutin Jun 3, 2018
8d85d3d
Fix the prepend method for the LinkedList
m-maksyutin Jun 3, 2018
2992bc7
Merge remote-tracking branch 'upstream/master'
m-maksyutin Jun 4, 2018
efe4f81
Fix the remove method for the MinHeap
m-maksyutin Jun 4, 2018
8000d9b
Merge branch 'master' into master
m-maksyutin Jun 5, 2018
f801f0a
Merge branch 'master' into master
trekhleb Jun 5, 2018
83cb5a6
Merge remote-tracking branch 'upstream/master'
m-maksyutin Jun 13, 2018
f013239
Merge branch 'master' of https://github.com/m-maksyutin/javascript-al…
m-maksyutin Jun 13, 2018
eae4e5c
Correct a comment
m-maksyutin Jun 13, 2018
13808e6
Merge branch 'master' into master
trekhleb Jun 18, 2018
a2c3012
Fix BST removal method
m-maksyutin Jun 19, 2018
9f19827
Merge remote-tracking branch 'upstream/master'
m-maksyutin Jun 19, 2018
7e2262f
Merge branch 'master' of https://github.com/m-maksyutin/javascript-al…
m-maksyutin Jun 19, 2018
578199e
Merge remote-tracking branch 'upstream/master'
m-maksyutin Jun 25, 2018
35f7b89
Fix the findEdge method of the graph
m-maksyutin Jun 25, 2018
fbc29d3
Merge remote-tracking branch 'upstream/master'
m-maksyutin Jun 25, 2018
48790e9
Fix the value returned by DisjointSet union
m-maksyutin Jun 25, 2018
d4c4615
Merge branch 'master' into master
trekhleb Jun 27, 2018
3331115
Add recursive factorial function
m-maksyutin Jun 28, 2018
10b2a01
Merge remote-tracking branch 'upstream/master'
m-maksyutin Jun 28, 2018
103c68c
Merge branch 'master' of https://github.com/m-maksyutin/javascript-al…
m-maksyutin Jun 28, 2018
ecc2dc8
Fix the insertion sort
m-maksyutin Jul 1, 2018
96efc15
Merge remote-tracking branch 'upstream/master'
m-maksyutin Jul 1, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/algorithms/sorting/insertion-sort/InsertionSort.js
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ export default class InsertionSort extends Sort {
// Go and check if previous elements and greater then current one.
// If this is the case then swap that elements.
while (
array[currentIndex - 1] &&
array[currentIndex - 1] !== undefined &&
this.comparator.lessThan(array[currentIndex], array[currentIndex - 1])
) {
// Call visiting callback.