Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 1.21 KB

README.md

File metadata and controls

19 lines (13 loc) · 1.21 KB

SortingLab

This lab is designed to analyze a series of sorting algorithms and compare running times. Done for my Algorithms and Data structures II class.

Objectives, specifications, and details can be found at Sorting_Lab_Objectives.pdf (Included in this repository)

Run it yourself

These instructions are intended for Linux & Mac Users. It should be done within the terminal

Windows users should install WSL and conduct the deployment of this application within the terminal of that system.

  1. Ensure that you have pip installed

    • Linux: First check with pip --version. If an error occured, run sudo apt-get install python3-pip Note that apt-get may need to be changed depending on what package manager you are using.
    • Mac: Follow this guide
  2. Use pip to install numpy by inputting python3 -m pip install numpy into the terminal.

  3. Run the program via the terminal by inputting python3 sorting[ID_REDACTED].py, or use an IDE of your choice.

Additional notes

Compiled in a Linux Mint environment using python version 3.8.10