예제 #1
0
파일: UGram.cs 프로젝트: sunsiz/UyghurNgram
        public ArrayList GetNGram(int freq)
        {
            ArrayList sanduq = new ArrayList();

            mBuf.GetAll(freq, sanduq);
            mBuf = null;
            mBuf = new TstTree();
            return(sanduq);
        }