Package util.objects.setDataStructures.swapList

Examples of util.objects.setDataStructures.swapList.Set_Swap_Array


     */
    public static ISet makeSwap(int n, boolean hash) {
        if (hash) {
            return new Set_Swap_Hash(n);
        } else {
            return new Set_Swap_Array(n);
        }
    }
View Full Code Here

TOP

Related Classes of util.objects.setDataStructures.swapList.Set_Swap_Array

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.