Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 244 Bytes

README.md

File metadata and controls

3 lines (2 loc) · 244 Bytes

SortingAlgorithms

An implementation of bubble and merge sort in order to sort a random array of numbers. Bubble sort is O(n^2) and merge sort O(log n). The program shows a graph visualising the array and the operations are also timed.