Hi,
I need one routine for permutation in my project as follows.
I want 3 number combination from 1 to 15 numbers. Each combination should be put in a file, one combination per line as fol...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_20170884.html
If I have 8bits and I want to permutate them in bit level, how should I go about it?
I've thought of shifting them, but I thought it'll means quite a number of lines just to permute 8 bits....
...
http://www.experts-exchange.com/Programming/Languages/C/Q_20276813.html
Zones:
CDate Answered: 03/15/2002 Rating: 7.4 Views: 0
given a positive integer n, list all the permutation of the set {1,2,3,...n} in lexicographic order
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20533366.html
Zones:
C++Date Answered: 12/07/2003 Rating: 7.2 Views: 0
Hello all,
Can someone help me write a code that permutate a String variables and return out a Vector.
The Vector will store all the different sequence of the String.
example:
public Vector...
http://www.experts-exchange.com/Programming/Languages/Java/Q_20690612.html
Zones:
JavaDate Answered: 07/25/2003 Rating: 7.0 Views: 0
Imagine having a number of factors (e.g. X,Y,Z) each having a set of values. As an example:
X1,X2,X3,X4 (factor 1 having 4 values)
Y1,Y2 (factor 2 having 2 values)
Z1,Z2,Z3 (fac...
http://www.experts-exchange.com/Programming/Languages/Q_21116627.html
Zones:
LanguagesDate Answered: 09/03/2004 Rating: 5.8 Views: 0
From my original question:
I need to know the number of ways I can arrange a set of k items in n buckets, so that the items in each bucket appears only once, but if a combination of items appears ...
http://www.experts-exchange.com/Other/Math_Science/Q_21190990.html
Hi, Im tryin to figure out a way to match M distinct objects with another N not neccesarily distinct objects. For example lets say I have M distinct objects {A,B,C,D,E,F}. I can have N objects {1...
http://www.experts-exchange.com/Other/Math_Science/Q_21203553.html
Hi there!,
I'm searching for the fastest way to get all permutations of the numbers from 0 to n in c#.
for example if n=2, I should get:
{0,1,2}
{0,2,1}
{1,0,2}
{1,2,0}
{2,0,1}
{2,1,0}
...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_21229838.html
Zones:
C#Date Answered: 12/04/2004 Rating: 9.0 Views: 0
Does VB.NET have built in functions for combinations (n C r) and permutations (n P r)? Also, does it have a function to actually generate these combinations and permutations given some inputs?
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_21355302.htm...
Hello,
I have a question about the permutation of letters. The maximum possible arrangement of ABCDE is 5! = 5x4x3x2x1 =120. In other words, there are 120 ways of writing ABCDE. What is the code...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_21550480.htm...