1
vote
Determine Frequency of numbers showing up in dice rolls
Rough draft of a recursive way to do it:
public static IEnumerable<KeyValuePair<int, int>> GetFrequenciesByOutcome(int nDice, int nSides)
{
int maxOutcome = (nDice * …
1
vote
Algorithm to find an optimum number of rummy-style sets?
My intuitive approach would be to start by discovering all the possible sets, by examining each card and searching for what can make a set with that card (i.e. consecutive things and same-value-thi …
1
vote
Generate all the possible permutations of a class
Most non-trivial dynamically allocated objects -- like strings -- don't have a finite amount of different "permutations" they can be in. That string can be as long as you want until your RAM runs …
11
votes
Testing for repeated characters in a string
If the string is sorted, you could just remember each character in turn and check to make sure the next character is never identical to the last character.
Other than that, for strings unde …
5
votes
What is the difference between an Algorithm and a Method
There is no technical difference between the term "method" as in "Newton's method" and "algorithm."
EDIT: On reflection, perhaps Pete is correct that algorithms terminate and methods may n …
25
votes
When does Big-O notation fail?
When N is small, the constant factor dominates. Looking up an item in an array of five items is probably faster than looking it up in a hash table.
…
1
vote
C# algorithm for generating hierarchy
I assume that your example incorrectly gives the wrong parent ID to object #5. This should cover it. Caveats: Assumes the "topmost" node always has a parent ID of zero. Ignores any nodes that a …
4
votes
what is the most efficient way to pick a random card from a deck when some cards are unusable?
The best way to do this is to shuffle the deck into a random order, and then pick the first unused card. Here's …
2
votes
Greatest Distance between Equal Numbers in Array
I don't see how you can do this really any faster besides just iterating through each row, each column, and each diagonal (you can tell if something's on the same diagonal by taking the absolute va …
2
votes
Sum of digits of a factorial
1 second? Why can't you just compute n! and add up the digits? That's 10000 multiplications and no more than a few ten thousand additions, which should take approximately one zillionth of a secon …
3
votes
What algorithm would you use to solve a very large tic-tac-toe game?
I don't think this is probably a very fruitful problem. Reason being:
If the number of marks in a row you need to win is high, the game will (it seems to me) be drawn at any reaso …
