Package stallone.ints

Examples of stallone.ints.QuickSortInt.sort()


    public void sort(IIntArray arr)
    {
        QuickSortInt qs = new QuickSortInt();
        qs.setData(arr, arr);
        qs.sort();
    }

    public IIntArray sortedIndexes(IIntArray arr)
    {
        QuickSortInt qs = new QuickSortInt();
View Full Code Here


    public IIntArray sortedIndexes(IIntArray arr)
    {
        QuickSortInt qs = new QuickSortInt();
        qs.setData(arr, arr.copy());
        qs.sort();
        return(qs.getSortedIndexes());
    }

    public IIntArray cleanToNew(IIntArray arr)
    {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.