Advertisement
n1gh7

PermutationsFixed

Jun 13th, 2016
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.16 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4.  
  5. namespace Permotacii
  6. {
  7.     class Program
  8.     {
  9.         public static void Main(string[] args)
  10.         {
  11.  
  12.             var permut = int.Parse(Console.ReadLine());
  13.             List<string> allPermutations = new List<string>();
  14.             createPermutation(permut, "", allPermutations);
  15.  
  16.             string[] allperutMasiv = allPermutations.ToArray();
  17.  
  18.             for (int i = 0; i < allperutMasiv.Length; i++)
  19.             {
  20.                 Console.WriteLine(allperutMasiv[i]);
  21.             }          
  22.  
  23.             Console.ReadLine();
  24.  
  25.         }
  26.  
  27.         public static void createPermutation(int n, string newPermut, List<string> permutations)
  28.         {
  29.             for (int i = n; i > 0; i--)
  30.             {
  31.                 if (!newPermut.Contains(i.ToString()))
  32.                 {
  33.                     createPermutation(n, newPermut + i + ',', permutations);
  34.                 }
  35.             }
  36.             if (newPermut.TrimEnd(',').Split(',').Length == n)
  37.             {
  38.                 permutations.Add(newPermut.TrimEnd(','));
  39.  
  40.             }
  41.             return;
  42.         }
  43.     }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement