public class

Sort

extends Object
java.lang.Object
   ↳ sun.misc.Sort

Summary

Public Constructors
Sort()
Public Methods
static void quicksort(Object[] arr, int left, int right, Compare comp)
quicksort the array of objects.
static void quicksort(Object[] arr, Compare comp)
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public Sort ()

Public Methods

public static void quicksort (Object[] arr, int left, int right, Compare comp)

quicksort the array of objects.

Parameters
left - the start index - from where to begin sorting
right - the last index.
comp - an object that implemnts the Compare interface to resolve thecomparison.

public static void quicksort (Object[] arr, Compare comp)