0
votes
3answers
67 views
Java permutations with least random numbers possible
hi folks!
i looking to generate a permutation of the array a and I dont want to use util function such as shuffle on collections...
The permutations(#) should be randomised and eve …
1
vote
5answers
68 views
fixed-length permutations of a string
I'm trying to take a seven-character string and generate all the possible 3- and 4-letter permutations of it. This seems like something that recursion would be handy for (most all …
2
votes
1answer
60 views
Generating non-duplicate permutation pairs in R
Sorry for the non-descriptive title but I don't know whether there's a word for what I'm trying to achieve.
Let's assume that I have a list of names of different classes like
c( …
0
votes
5answers
77 views
Best algorithm to find all possible permutation of given binary bits
Hi,
I am looking for an optimal algorithm to find out remaining all possible permutation
of a give binary number.
For ex:
Binary number is : ........1. algorithm should return …
0
votes
3answers
178 views
Recursion and permutations
Hi.
Let's say that we have two boxes of pencils (in first box just blue and in second just red pencils). So the question now is, in how many ways can we put x red and y blue penc …
3
votes
3answers
142 views
How do I get all permutations of xPy in C?
I'd like to calculate all the permutations of size Y of a set of size X. That is if I had (1,2,3) and want all permutations of size 2, 3P2, it would be (1,2) (1,3) (2,1) (2,3) (3, …
2
votes
5answers
170 views
Algorithm for generating huge wordlist
Alright, I know this is going to sound bad, like I'm going to use this for un-ethical things, but you have my word that I am not.
I am writing a paper for my Computer and Informat …
0
votes
3answers
89 views
Permutations of a given set of numbers
Can someone please explain a good algorithm to find the permutations of a given set of numbers?
Thank you!
8
votes
8answers
254 views
Good hash function for permutations?
I have got numbers from (usually in the range of 0 to 1000). An algorithm selects some numbers from this range (about 3 to 10 numbers). This selection is done quite often, and I ne …
0
votes
1answer
118 views
Code to generate Permutations for a given set of numbers efficiently C#
Can anyone please write or give me a link where I can find the C# code to list all the permutations for a give set of numbers in the most efficient manner?
1
vote
4answers
104 views
How can I maximally partition a set?
I'm trying to solve one of the Project Euler problems. As a consequence, I need an algorithm that will help me find all possible partitions of a set, in any order.
For instance, g …
8
votes
6answers
323 views
Fast permutation -> number -> permutation mapping algorithms
I have n elements. For the sake of an example, let's say, 7 elements, 1234567. I know there are 7! = 5040 permutations possible of these 7 elements.
I want a fast algorithm comp …
4
votes
3answers
102 views
Worker/Timeslot permutation/constraint filtering algorithm
Hope you can help me out with this guys. It's not help with work -- it's for a charity of very hard working volunteers, who could really use a less confusing/annoying timetable sy …
5
votes
6answers
206 views
How to check if permutations have equal parity?
I am looking for a way to check if 2 permutations (represented by lists) are of the same parity. Note that I am not interested if they are even or odd parity, just the equality.
I …
1
vote
6answers
119 views
Enumerating Permutations of a set of subsets
I have sets S1 = {s11,s12,s13), S2 = {s21,s22,s23) and so on till SN.I need to generate all the permutations consisting elements of S1,S2..SN.. such that there is only 1 element fr …
