sav

Sorting Algorithms Visualized
Index Commits Files Refs README LICENSE
commit 38baf81d7f819db00faec60aafda04f784cf88b6
parent 5689e041486857536336d303c694e2afb9c1f3f7
Author: mjkloeckner <martin.cachari@gmail.com>
Date:   Sun, 31 Jul 2022 23:28:16 -0300

Updated README

Diffstat:
MREADME.md | 10+++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
@@ -2,11 +2,14 @@
 
 The idea is to develop a visual program that shows how an array is being sorted
 
-Written using C and SDL2 library for graphics
+Written in C using SDL2 library for graphics
 
 ![screenshot](https://user-images.githubusercontent.com/64109770/177228195-dd10ba72-31b1-4c26-a32f-0942d945f6f8.png)
 
-## Quick start
+## Dependencies
+- ![SDL2](https://www.libsdl.org/)
+
+## Building and running
 ```console
 $ make
 $ ./sav
@@ -15,8 +18,9 @@ $ ./sav
 
 ## Keybindings
 
-- `space` - start/stop.
+- `space` - start/stop the sorting.
 - `tab` - change sorting algorithm.
+- `S` - change array shuffle method (random, in order, reversed).
 - `R` - restart.
 
 ## License