mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-20 18:48:13 +00:00
5f04e68842
llvm-svn: 268
12 lines
183 B
C
12 lines
183 B
C
|
|
|
|
void combinations(unsigned int n, unsigned *A) {
|
|
unsigned int i, t = 1;
|
|
A[0] = A[n] = 1;
|
|
|
|
for (i = 1; i <= n/2; i++) {
|
|
t = (t * (n+1-i)) / i;
|
|
A[i] = A[n-i] = t;
|
|
}
|
|
}
|