Welcome to the Sorting Algorithm Visualizer! This project is a web application built with React that allows users to visualize various sorting algorithms. It provides an interactive and educational way to understand how different sorting algorithms work.
- Visualize various sorting algorithms including Merge Sort, Quick Sort,Bubble Sort, Selection Sort, Insertion Sort.
- Step-by-step visualization to observe the inner workings of each algorithm.
To run this project locally, you need to have the following software installed:
- Clone the repository:
git clone https://github.com/Sreeharij/sorting-visualizer cd sorting-visualizer
- Install the dependencies:
npm install # or yarn install
- To start the development server, run:
npm start # or yarn start
This will launch the app in development mode. Open http://localhost:3000 to view it in the browser.
This project is licensed under the terms of the MIT License. See the LICENSE file for more information.
- Inspired by Clément Mihailescu's Sorting Visualizer