Tagged Questions

0
votes
3answers
17 views

Check if a combination matches a given set

Basically I'm looking for a solution which returns if a given combination matches a given set. Example: I have an array which stores which computer room and which workplace has which equipment. I …
1
vote
3answers
74 views

Valid XML, Valid schema. Where have I gone wrong?

Once upon a time I had a valid doctype and valid XML. I put the former on top of the latter, cntrl-s'd and behold: all was as all should be. Nowadays I have a valid schema (custom built for my still …
2
votes
7answers
414 views

Enumeration of combinations of N balls in A boxes?

Hi, I want to enumerate all possible combinations of N balls in A boxes. example: I have 8 balls to deal in 3 boxes : box_1 box_2 box_3 case-1 8 0 0 case-2 0 …
1
vote
6answers
640 views

Algorithm for finding all combinations of k elements from stack of n “randomly”

Hello, I have a problem resembling the one described here: http://stackoverflow.com/questions/127704/algorithm-to-return-all-combinations-of-k-elements-from-n I am looking for something similar …
0
votes
4answers
130 views

key combination to select current line in vs 2008?

Hello, I just started learning c# on vs 2008. I found key combiations for select current word delete current line is there a key combination to select current line?
1
vote
4answers
345 views

Creating multiple numbers with certain number of bits set

Problem I need to create 32 Bit numbers (signed or unsigned doesn't matter, the highest bit will never be set anyway) and each number must have a given number of Bits set. Naive Solution The …