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 C++

1 Answer

0 votes
#include <iostream>
 
void printArray(int a[], int constant_len) {
    for (int i = 0; i < constant_len; i++)
        std::cout << a[i] << " ";
    std::cout << "\n";
}
   
void heapAlgorithmPermutation(int a[], int len, int constant_len) {
    if (len == 1) {
        printArray(a, constant_len);
        return;
    }
   
    for (int i = 0; i < len; i++) {
        heapAlgorithmPermutation(a, len - 1, constant_len);
  
        if (len % 2 == 1)
            std::swap(a[0], a[len - 1]);
        else
            std::swap(a[i], a[len - 1]);
    }
}
 
int main() {
    int arr[] = {1, 2, 3, 4};
  
    int len = sizeof arr / sizeof arr[0];
  
    heapAlgorithmPermutation(arr, len, len);
  
    return 0;
}
 
 
 
 
/*
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 Feb 19, 2021 by avibootz
edited Apr 14, 2024 by avibootz
...