Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nwrenger/bubblesort-example
Examples of the bubblesort algorithm written in rust.
https://github.com/nwrenger/bubblesort-example
algorithm bubblesort cocktailshakersort rust
Last synced: about 1 month ago
JSON representation
Examples of the bubblesort algorithm written in rust.
- Host: GitHub
- URL: https://github.com/nwrenger/bubblesort-example
- Owner: nwrenger
- License: mit
- Created: 2023-04-08T20:01:18.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-01T19:30:58.000Z (6 months ago)
- Last Synced: 2024-11-24T20:39:44.524Z (about 2 months ago)
- Topics: algorithm, bubblesort, cocktailshakersort, rust
- Language: Rust
- Homepage:
- Size: 10.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bubblesort-example
This repo contains examples of the bubblesort algorithm written in rust. This branch is the default bubblesort algorithm with a little bit optimization. In the cocktail-shaked branch you can find a highly optimized version of the bubblesort algorithm, the Cocktailshakersort algorithm, which is in best cases upto 50% faster but in worse cases as fast as the normal bubblesort algorithm.