예제 #1
0
        public IEnumerable <Gaddag> FindAllWords(Bank bank)
        {
            if (isEndOfWord)
            {
                yield return(this);
            }

            for (char c = 'a'; c <= 'z'; ++c)
            {
                if (!bank.HasLetter(c) || this[c] == null)
                {
                    continue;
                }

                Bank after = new Bank(bank);
                after.TakeLetter(c);
                foreach (Gaddag word in this[c].FindAllWords(after))
                {
                    yield return(word);
                }
            }

            if (this['{'] != null)
            {
                foreach (Gaddag word in this['{'].FindAllWords(bank))
                {
                    yield return(word);
                }
            }
        }
예제 #2
0
        public float CalculateValue(List <string> words)
        {
            int exacts            = 0;
            int exactCandidates   = 0;
            int inexacts          = 0;
            int inexactCandidates = 0;
            // The Size getter is actually quite expensive so we cache the size here.
            int size = Size;

            // I would much prefer a foreach here, but for actually gives better performance.
            for (int i = 0; i < words.Count; ++i)
            {
                string word = words[i];
                if (word.Length > size + 1)
                {
                    continue;
                }
                else if (word.Length == size + 1)
                {
                    exactCandidates += 1;
                }
                else
                {
                    inexactCandidates += 1;
                }

                Bank bank = new Bank(this);

                bool oneExtra = false;
                foreach (char c in word)
                {
                    if (!bank.HasLetter(c))
                    {
                        if (oneExtra)
                        {
                            // This word doesn't match, so skip it.
                            oneExtra = false;
                            break;
                        }
                        else
                        {
                            oneExtra = true;
                        }
                    }
                    else
                    {
                        bank.TakeLetter(c);
                    }
                }

                if (oneExtra)
                {
                    if (word.Length == size + 1)
                    {
                        exacts += 1;
                    }
                    else
                    {
                        inexacts += 1;
                    }
                }
            }

            float exactFreq   = exactCandidates == 0 ? 0 : (float)exacts / exactCandidates;
            float inexactFreq = inexactCandidates == 0 ? 0 : (float)inexacts / inexactCandidates;
            float value       = exactFreq * ExactWeight + inexactFreq * (1 - ExactWeight);

            return(value);
        }