├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── dependencies ├── CMakeLists.txt ├── catch2 │ └── CMakeLists.txt ├── imgui-sfml │ └── CMakeLists.txt └── sfml │ └── CMakeLists.txt ├── imgui.ini ├── include ├── gui.h ├── pushswap.h ├── queues.h └── utils.h ├── push_swap ├── src ├── CMakeLists.txt ├── gui.cpp ├── main.cpp ├── pushswap.cpp ├── queues.cpp └── utils.cpp └── tests ├── CMakeLists.txt ├── test_pushswap.cpp └── test_queues.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | build/ 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/README.md -------------------------------------------------------------------------------- /dependencies/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/dependencies/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/catch2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/dependencies/catch2/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/imgui-sfml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/dependencies/imgui-sfml/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/sfml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/dependencies/sfml/CMakeLists.txt -------------------------------------------------------------------------------- /imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/imgui.ini -------------------------------------------------------------------------------- /include/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/include/gui.h -------------------------------------------------------------------------------- /include/pushswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/include/pushswap.h -------------------------------------------------------------------------------- /include/queues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/include/queues.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/include/utils.h -------------------------------------------------------------------------------- /push_swap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/push_swap -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/src/gui.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/pushswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/src/pushswap.cpp -------------------------------------------------------------------------------- /src/queues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/src/queues.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_pushswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/tests/test_pushswap.cpp -------------------------------------------------------------------------------- /tests/test_queues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-reo/push_swap_visualizer/HEAD/tests/test_queues.cpp --------------------------------------------------------------------------------