Package org.graph4j.util
Class SortingAlgorithm
java.lang.Object
org.graph4j.util.SortingAlgorithm
- Direct Known Subclasses:
CountingSort,RadixSort
- Author:
- Cristian Frăsinaru
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
SortingAlgorithm
public SortingAlgorithm()
-
-
Method Details
-
sort
public abstract void sort(int[] arr) Sorts an array of integers.- Parameters:
arr- the array to be sorted.
-
sort
Sorts a list of integers.- Parameters:
list- the list to be sorted.
-