thuva4 / Algorithms

Collection of algorithms in multiple programming languages.
https://thuva4.github.io/Algorithms/
Apache License 2.0
487 stars 543 forks source link

Perl bubble sort #747

Closed jonasbn closed 5 years ago

jonasbn commented 5 years ago

The current example implementation of bubble sort is broken

Example run:

$ perl Perl/BubbleSort/bubble_sort.pl
1 3 2 3 5 6 7 9 4 10

This PR corrects the implementation, with a version resembling popular pseudo code references more closely.

Example run:

$ perl Perl/BubbleSort/bubble_sort.pl
1 2 3 3 4 5 6 7 9 10