Package stallone.ints

Examples of stallone.ints.QuickSortInt


        return (res);
    }

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


        qs.sort();
    }

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

TOP

Related Classes of stallone.ints.QuickSortInt

Copyright © 2018 www.massapicom. 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.