Skip to content

A small merge-sort algorithem made as an assignement for semester 3 software engineering.

Notifications You must be signed in to change notification settings

spoilerdo/S3Algorithm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

S3Algorithm merge-sort

Small project made with Java (JavaFX) to show how merge-sort works. It contains a list of items that can be sorted by every propertie they contain.

Concept

Conceptually, a merge sort works as follows:

  1. Divide the unsorted list into n sublists, each containing one element (a list of one element is considered sorted).
  2. Repeatedly merge sublists to produce new sorted sublists until there is only one sublist remaining. This will be the sorted list.

About

A small merge-sort algorithem made as an assignement for semester 3 software engineering.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages