Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,938 questions

51,875 answers

573 users

How to generate all possible permutations of N numbers in Java

1 Answer

0 votes
public class MyClass {
    public static void printArray(Integer[] arr) {
        for (Integer n : arr) {
            System.out.print(n + " ");
        }
        System.out.println();
    }
    public static void swap(Integer arr[], int i, int j) {
        int tmp = arr[i];
        arr[i] = arr[j];
        arr[j] = tmp;
    }
    public static void heapAlgorithmPermutation(Integer[] arr, int len, int constant_len) {
        if (len == 1) {
            printArray(arr);
            return;
        }

        for (int i = 0; i < len; i++) {
            heapAlgorithmPermutation(arr, len - 1, constant_len);
      
            if (len % 2 == 1)
                swap(arr, 0, len - 1);
            else
                swap(arr, i, len - 1);
        }
    }
    public static void main(String args[]) {
        Integer[] arr = {1, 2, 3, 4};

        heapAlgorithmPermutation(arr, arr.length, arr.length);
    }
}
 
 
 
 
/*
run:
 
1 2 3 4 
2 1 3 4 
3 1 2 4 
1 3 2 4 
2 3 1 4 
3 2 1 4 
4 2 3 1 
2 4 3 1 
3 4 2 1 
4 3 2 1 
2 3 4 1 
3 2 4 1 
4 1 3 2 
1 4 3 2 
3 4 1 2 
4 3 1 2 
1 3 4 2 
3 1 4 2 
4 1 2 3 
1 4 2 3 
2 4 1 3 
4 2 1 3 
1 2 4 3 
2 1 4 3 

*/

 



answered Apr 4, 2021 by avibootz
...