Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.09 KB

File metadata and controls

22 lines (18 loc) · 1.09 KB

Sorting

This Class implements several Sorting Algorithms which works on Arrays

Class : Sorting
Description : Static container for several Sorting Algorithms
+InsertionSort(arr:Comparable[]):Comparable[]
+SelectionSort(arr:Comparable[]):Comparable[]
+BubbleSort(arr:Comparable[]):Comparable[]
+QuickSort(arr:Comparable[]):Comparable[]
+MergeSort(arr:Comparable[]):Comparable[]
+HeapSort(arr:Comparable[]):Comparable[]

Implementations

Note

In UML Class Diagram above bold represents static members, actually they have to be underlined, since github markdown doesn't support underline, bold is used All UML Class Diagrams will be replaced by their Image equivalents soon