মঙ্গলবার, ৩০ আগস্ট, ২০১৬

UVA 10098 - Generating Fast

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
main()
{
   long int i,n;
   scanf("%ld",&n);
   getchar();
   for(i=1;i<=n;i++)
   {
        char s[10000]={0};
        gets(s);
        long l=strlen(s),j,k,k1;
        sort(s,s+l);
        do
        {
        printf("%s\n",s);
       
}
while(next_permutation(s,s+l));
printf("\n");
   }
}

কোন মন্তব্য নেই:

একটি মন্তব্য পোস্ট করুন

Factory Pattern

Factory Method  is a creational design pattern that provides an interface for creating objects in a superclass but allows subclasses to alte...