No description
Find a file
2023-11-29 21:02:19 +01:00
.github/workflows Update main.yml 2023-11-23 20:39:43 +01:00
.kubernetes Added kubernetes config 2023-11-29 21:02:19 +01:00
src Added kubernetes config 2023-11-29 21:02:19 +01:00
.gitignore Performance fixed: Rewrote to not use generators 2022-12-06 16:40:58 +01:00
BeepSortMacroQuad.iml initial 2022-11-06 22:44:59 +01:00
Cargo.lock sound fixed! 2023-03-05 00:21:12 +01:00
Cargo.toml added sound generation, this is currently very broken! 2023-03-04 23:11:05 +01:00
Dockerfile Added kubernetes config 2023-11-29 21:02:19 +01:00
index.html added an exit button, cleaned up the algorithm choice 2023-02-26 23:25:41 +01:00
README.md added contributing to ReadMe 2023-03-01 00:10:00 +01:00

Work in progress!

A visualization of sorting!

This is a clone of the project The Sound of Sorting without the sound (for now)

It is written using the tiny game engine MacroQuad

WebAssembly version can be found here beepsort.polsevev.dev

TODO:

  • Implement sound using browser API
  • Clean up user interface, perhaps move to JS?
  • Add more visualization modes (circle, points etc)
  • Add more algorithms

Contributing

If you wish to contribute an algorithm to this project, i encourage it!

Algorithms are located in Algorithm.rs and are made as follows!

  1. Create a case in the match located in the function run
  2. Implement the algorithm as an async function
  3. Whenever you wish to swap two elements, do so in the following manner:
    • if list.swap(a,b).await {return}
    • This ensures we can exit the run of the algorithm if the user clicks "Exit"
  4. Add a button on the front page (will move to a menu in the future!)
  5. Success!!!!!