コード例 #1
0
        //find Closest permutation
        internal Matching FindClosest(string text, out Permutation perm)
        {
            Permutation tmp = new Permutation(text);

            return(tree.SearchClosest(tmp, out perm));
        }
コード例 #2
0
        //return if the Permutation Exist
        internal bool PermExist(string text, out Permutation perm)
        {
            Permutation tmp = new Permutation(text);

            return(tree.Search(tmp, out perm));
        }