How should I implement the classic bubble sort algorithm? I'd particularly like to see a C++ implementation, but any language (even pseudocode) would be helpful.
P.S. Not a homework.
|
How should I implement the classic bubble sort algorithm? I'd particularly like to see a C++ implementation, but any language (even pseudocode) would be helpful. P.S. Not a homework. |
|||||||||||||||||||||
|
|
Wikipedia provides two pseudocode implementations of the bubble sort:
and
|
|||
|
|
|
http://www.sorting-algorithms.com/ contains a number of algorithms, examples, and pseudocode. |
|||
|
|
|
Here is an implementation of bubble sort in c and one in c++. And here is an implementation in pseudocode. |
|||
|
|
|
There are 59 implementations in different languages at rosettacode.com at the moment of this writing. This is the great algorithm to implement in different languages, recently I've tried to implement it in J, and I suspected there can be a shorter implementation (though I haven't created my own yet). It allows you to find out which means language provides you to solve different kind of problems. So before watching on real examples try to implement your own version, I'm sure you'll like it. |
||||
|
|
|
Wikipedia actually covers most of the fundamental algorithms rather well, and google knows everything, so, without being snarky, those really are good places to start. You can get extra credit by implementing the only-slightly-more-complicated but much superior cocktail sort. Don't actually use either one in a real program, though. |
|||
|
|
|
Here's a hastily written C# (and could be Java) version. I'm sure it could be improved, and I've avoided LINQ so you can convert it.
|
|||
|
|
|
Here's my simple implementation in Java :
|
|||
|
|