0
votes
3answers
89 views
Nth Combination
Is there a direct way of getting the Nth combination of an ordered set of all combinations of nCr?
Example: I have four elements: [6, 4, 2, 1]. All the possible combinations by ta …
1
vote
2answers
99 views
Print possible strings created from a Number
Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone's keypad.
i.e. for 1,0-> No …
20
votes
19answers
1k views
Code-golf: generate pascal’s triangle
Generate a list of lists (or print, I don't mind) a Pascal's Triangle of size N with the least lines of code possible!
Here goes my attempt (118 characters in python 2.6 using a t …
2
votes
6answers
91 views
What is the probability that the first 4 bytes of MD5 hash computed from file contents will collide?
This is a combinatorics question with some theory in hashing algorithms required.
Let's say the input can be any random sequence of bytes 30 kB to 5 MB of size (I guess that makes …
1
vote
4answers
240 views
Generating n-digit numbers sequenced by sum of individual digits (without recursion)
I'm looking to generate all possible values of n-digit number, in the following order, where the sequence is dictated by the sum of the individual digits.
For example, with n = 3: …
3
votes
1answer
66 views
Combinations, Dispositions and Permutations in PHP
What is the most efficient way to generate all the combinations, dispositions and permutations of an array in PHP?
6
votes
4answers
114 views
Complex Combinatorial Algorithms
So Wendy's advertises their sandwich as having 256 combinations - meaning there are 8 ingredients you can either have to not have (although I wonder why they would count the combin …
1
vote
2answers
174 views
Find the permutations where no element stays in place
I'm working with permutations where each element is different from its original location. I would like an algorithm that given {an input length, row and digit}, will give me the o …
2
votes
4answers
2k views
List all possible combinations of k integers between 1…n (n choose k)
Hi,
Out of no particular reason I decided to look for an algorithm that produces all possible choices of k integers between 1...n, where the order amongst the k integer doesn't ma …
2
votes
3answers
169 views
Set Combinatorics Algorithm in Java
I have a data set with attributes like this:
Marital_status = {M,S,W,D}
IsBlind = {Y,N}
IsDisabled = {Y,N}
IsVetaran = {Y,N}
etc. There are about 200 such variables.
I need an …
1
vote
1answer
91 views
Is there an equivalent of Python’s itertools for Java?
I'm searching for a library (preferably generic) that generates iterable combinations and permutations of data contained in collections. Cartesian product would also be nice.
The …
0
votes
2answers
92 views
An algorithm for splitting a sequence in equally spaced, non colliding subsequences.
Hi to all,
I got this problem that I can't just solve algorithmically.
Let's say i have a video capture that always captures video frames at a fixed rate F (let's say 30 frames pe …
1
vote
4answers
131 views
How to generate a list of subsets with restrictions?
I am trying to figure out an efficient algorithm to take a list of items and generate all unique subsets that result from splitting the list into exactly 2 sublists. I'm sure the …
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 …
0
votes
4answers
204 views
get every combination of strings
I had a combinatorics assignment that involved getting every word with length less than or equal to 6 from a specific combination of strings. In this case, it was S = { 'a', 'ab', …
