Top "Combinatorics" questions

Deals with combinations of entities belonging to a finite set in accordance with certain constraints.

Calculating the Amount of Combinations

Cheers, I know you can get the amount of combinations with the following formula (without repetition and order is not …

c++ algorithm combinatorics
Generating permutations lazily

I'm looking for an algorithm to generate permutations of a set in such a way that I could make a …

algorithm functional-programming clojure combinatorics
combination without repetition of N elements without use for..to..do

i want load in a list the combination of N number without repetition, giving to input the elements and group. …

algorithm delphi combinatorics delphi-xe2
Generate all combinations in SQL

I need to generate all combinations of size @k in a given set of size @n. Can someone please review …

sql tsql sql-server-2008 combinatorics
Scheduling algorithm for a round-robin tournament?

I recently did studying stuff and meet up with Donald Knuth. But i didn't found the right algorithm to my …

algorithm combinatorics
all combinations of k elements out of n

Can somebody provide me a link or pseudocode of a function for finding all combinations of k elements out of …

c++ stl combinatorics
In Perl, how can I generate all possible combinations of a list?

I have a file with a list, and a need to make a file that compares each line to the …

arrays perl combinations combinatorics
How to design an algorithm to calculate countdown style maths number puzzle

I have always wanted to do this but every time I start thinking about the problem it blows my mind …

java c++ algorithm combinatorics
Combinatorics in Python

I have a sort of a one level tree structure as: Where p are parent nodes, c are child nodes …

python combinatorics directed-acyclic-graphs bipartite
Hungarian algorithm in Python

Is there good implementation of Hungarian algorithm in standard python libraries?

python graph combinatorics matching