Skip to content

Implement fast sorting algorithms such as QuickSort, MergeSort and HeapSort.

License

Notifications You must be signed in to change notification settings

yulianzavodnyk/Sorting-App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

First Year CS Project - Sorting App (Fast Sorting Algorithms)

  1. Overview
  2. Features
  3. Gallery
  4. Requirements
  5. Setup and Running
  6. Important Notes
  7. License

Overview

This is the project that I did during my first Computer Science academic year. The goal was to implement fast sorting algorithms such as QuickSort, MergeSort and HeapSort. For that reason, I've built an application using Qt for the GUI that can be run inside a Docker container. It allows users to sort integers, see sorted data and sorting metrics.

Features

  • Sorting algorithms: Supports QuickSort, MergeSort, and HeapSort.
  • Array input: Users can manually input arrays or generate random arrays with specified size and range.
  • See metrics: Displays detailed metrics including array size, number of swaps, memory usage, and sorting time.
  • Save metrics: Ability to save sorting metrics to a CSV format.

Gallery

Click 'Info' button to see details how application works.

Example of generation random array, sorting and saving metrics:

Getting Started

Requirements

  • Docker: Follow the instructions on the Docker website to install Docker.
  • VcXsrv (X Server for Windows): Download and install VcXsrv from SourceForge.

Setup and Running

Step 1: Clone the Repository

git clone https://github.com/yulianzavodnyk/Sorting-App.git
cd Sorting-App

Step 2: Run VcXsrv:

  1. Launch VcXsrv from the Start menu.
  2. Configure the display settings:
    1. Multiple windows
    2. Display number: 0
    3. Start no client
    4. Check 'Disable access control'

Step 3: Configure X Server

Set DISPLAY Environment Variable:

$env:DISPLAY="host.docker.internal:0.0"

Step 4: Run Docker Engine

Step 5: Build the Docker Image

docker build -t first_year_cs_coursework .

Step 6: Run the Docker Container

docker run -it --rm -e DISPLAY=host.docker.internal:0.0 -v /tmp/.X11-unix:/tmp/.X11-unix first_year_cs_coursework

or if you prefer using Docker Compose you can run

docker-compose up --build

Important Notes

  • Ensure VcXsrv is running before starting the Docker container.
  • The DISPLAY environment variable and Docker volume for X11 are necessary for GUI display.
  • Remember that when you are saving metrics, it will be saved inside docker container.

License

This project is licensed under MIT License. Check LICENSE for details.

About

Implement fast sorting algorithms such as QuickSort, MergeSort and HeapSort.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published