Skip to content

Latest commit

 

History

History
45 lines (40 loc) · 2.7 KB

README.md

File metadata and controls

45 lines (40 loc) · 2.7 KB

sorting.ts Algorithmic Sorting Visualiser

TypeScript version Node.js version Build Status - GitHub Actions

Sorting is the backbone of computer operations. Unique techniques are employed to sort data in different ways. This is part of the math investigation.

Setting up

  1. Download the source code under the Code drop down (Download ZIP) or clone it.
  2. Unzip and/or open the folder in any IDE or terminal environment.
  3. Install the latest version of Node.js if you havent.
  4. Open the terminal in the root directory of the project and run npm install to install all packages (including TypeScript).
  5. Build the code into JavaScript using npm run build.
  6. Run the code using npm start.
  7. It will open a visualiser to run the functions.

More reading

You can read the full report here, which explains the maths, and logic, behind this project and more widely, sorting algorithms.