public static List <string> ReduceWithReplacment(string src)
        {
            Thesaurus           t      = getThesaurusInstance();
            List <WordResult[]> result = Split(src);
            List <string>       ls     = new List <string>();

            WordResult[] twr;
            string       s;
            int          k;
            bool         IsNFound;

            for (int i = 0; i < result.Count; i++)
            {
                IsNFound = false;
                for (int j = 1; j < result[i].Length - 1; j++)
                {
                    s = Utility.GetPOSString(result[i][j].nPOS, nPosLevel.LevelOne);
                    if (s == "n")
                    {
                        IsNFound = true;
                        continue;
                    }
                    if (IsNFound)
                    {
                        if (s == "a")
                        {
                            twr = result[i];
                            //去掉句首的连词
                            if (Utility.GetPOSString(twr[1].nPOS, nPosLevel.LevelOne) == "c")
                            {
                                twr[1].sWord = "";
                            }
                            ls.Add(t.ReplaceByProbility(PrintResultStringOnly(twr)));
                            break;
                        }
                        else if (s == "d" || s == "n")
                        {
                            continue;
                        }
                        else
                        {
                            IsNFound = false;
                            continue;
                        }
                    }
                }
            }
            return(ls);
        }