Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/o-reo/push_swap_visualizer
A clean visualizer for your Push Swap Algorithm, you can't fix what you can't see !
https://github.com/o-reo/push_swap_visualizer
algorithms cpp imgui
Last synced: 7 days ago
JSON representation
A clean visualizer for your Push Swap Algorithm, you can't fix what you can't see !
- Host: GitHub
- URL: https://github.com/o-reo/push_swap_visualizer
- Owner: o-reo
- License: gpl-3.0
- Created: 2018-03-14T11:50:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-18T13:47:53.000Z (9 months ago)
- Last Synced: 2024-08-01T10:20:57.873Z (3 months ago)
- Topics: algorithms, cpp, imgui
- Language: C++
- Homepage:
- Size: 5.13 MB
- Stars: 303
- Watchers: 2
- Forks: 17
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- 42-resources - push_swap_visualizer - reo` | (WELCOME / **Push_swap**)
README
# Push Swap Visualizer
This project is a visualizer for the **"PUSH_SWAP"** 42 School Project.
**Push Swap** is a program that takes as argument a space separated list of numbers and outputs a list of commands that can be used to sort them.
You can read the subject [here](https://github.com/Binary-Hackers/42_Subjects/blob/master/00_Projects/02_Algorithmic/push_swap.pdf).
## Install
- Clone the `push_swap_visualizer` repository into the directory where your `push_swap` project is located:
```bash
git clone https://github.com/o-reo/push_swap_visualizer.git
```This project uses C++17, cmake, SFML and ImGui.
- Install required packages (if not already installed)
For Debian-based systems, you can install the necessary packages using the following commands:```bash
sudo apt-get update
sudo apt-get install cmake
sudo apt-get install g++
sudo apt-get install clang
sudo apt-get install libgl1-mesa-dev libglu1-mesa-dev
sudo apt-get install libx11-dev libxrandr-dev
sudo apt-get install libudev-dev
sudo apt-get install libfreetype-dev
```- Navigate to the `push_swap_visualizer` directory, create `build` directory, and navigate into the build directory:
```bash
cd push_swap_visualizer
mkdir build
cd build
```- Generate the build files using CMake and compile the visualizer:
```bash
cmake ..
make
```- Run the visualizer:
```bash
./bin/visualizer
```## Usage
- If you've relocated your push_swap program, simply update the visualizer's menu directory from "../../push_swap" to the new path of your push_swap program. For instance, "../../new_directory/push_swap".
- In the **Values** window
- Choose the size of the push swap input with the slider [Optional]
- **Shuffle** the input [Optional]
- The space separated values should be filled automatically, you can also put your own values
- Set the Push Swap program path (Absolute or relative path).
- **Compute** the sort commands, it will display OK when done.
- In the **Controls** window
- **Load** the commands in the visualizer
- **Start** the animation
- Adjust the **Speed** as needed
- **Pause** and go **Step** by step to see the details of your algorithm.
- **Load** to restart the animation![](https://i.imgur.com/zqcsZfY.png)