Advertisement
Infernale

Permute

Dec 8th, 2018
412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.75 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void printArray(int arr[], int n){
  5.     for(int i=0;i<n;i++){
  6.         cout << arr[i] << " ";
  7.     }
  8.     cout << endl;
  9.     return;
  10. }
  11.  
  12. void swap(int *x, int *y){
  13.     long int t;
  14.     t=*x;
  15.     *x=*y;
  16.     *y=t;
  17. }
  18.  
  19. void sort(int *a,int n){
  20.     long int p=n-1,i;
  21.     while (p>=0){
  22.         for(i=0;i<=(p-1);++i){
  23.             if (a[i]<=a[i+1])
  24.                 swap(&a[i],&a[i+1]);
  25.             else
  26.                 continue;
  27.             }
  28.             p--;
  29.         }
  30.     }
  31.  
  32. void permute(int *array,int i,int length){  
  33.     if(length == i){
  34.         printArray(array,length);
  35.         return;
  36.     }
  37.     int j = i;
  38.     for(j=i;j<length;j++){
  39.         swap(array+i,array+j);
  40.         permute(array,i+1,length);
  41.         swap(array+i,array+j);
  42.         }
  43.   return;
  44. }
  45.  
  46. int main(){
  47.     int arr[] = {1, 2, 3, 4, 5};
  48.     int n = 5;
  49.     permute(arr, 0, n);
  50.     return 0;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement