/// <summary> /// 输出词列表 /// </summary> public void OutWords() { IDictionaryEnumerator idEnumerator1 = this.htWords.GetEnumerator(); while (idEnumerator1.MoveNext()) { IDictionaryEnumerator idEnumerator2 = ((Hashtable)idEnumerator1.Value).GetEnumerator(); while (idEnumerator2.MoveNext()) { SegList aa = (SegList)idEnumerator2.Value; for (int i = 0; i < aa.Count; i++) { Console.WriteLine(idEnumerator1.Key.ToString() + idEnumerator2.Key.ToString() + aa.GetElem(i).ToString()); } } } }
/// <summary> /// 按长度排序 /// </summary> public void Sort(SegList list) { int max = 0; for (int i = 0; i < list.Count - 1; ++i) { max = i; for (int j = i + 1; j < list.Count; ++j) { string str1 = list.GetElem(j).ToString(); string str2 = list.GetElem(max).ToString(); int l1; int l2; if (str1 == "null") { l1 = 0; } else { l1 = str1.Length; } if (str2 == "null") { l2 = 0; } else { l2 = str2.Length; } if (l1 > l2) { max = j; } } object o = list.GetElem(max); list.SetElem(max, list.GetElem(i)); list.SetElem(i, o); } }
/// <summary> /// 对加载的词典排序并重新写入 /// </summary> /// <param name="Reload">是否重新加载</param> public void SortDic(bool Reload) { DateTime start = DateTime.Now; StreamWriter sw = new StreamWriter(this.DicPath, false, System.Text.Encoding.UTF8); IDictionaryEnumerator idEnumerator1 = this.htWords.GetEnumerator(); while (idEnumerator1.MoveNext()) { IDictionaryEnumerator idEnumerator2 = ((Hashtable)idEnumerator1.Value).GetEnumerator(); while (idEnumerator2.MoveNext()) { SegList aa = (SegList)idEnumerator2.Value; aa.Sort(); for (int i = 0; i < aa.Count; i++) { if (aa.GetElem(i).ToString() == "null") { sw.WriteLine(idEnumerator1.Key.ToString() + idEnumerator2.Key.ToString()); } else { sw.WriteLine(idEnumerator1.Key.ToString() + idEnumerator2.Key.ToString() + aa.GetElem(i).ToString()); } } } } sw.Close(); if (Reload) { this.InitWordDics(); } TimeSpan duration = DateTime.Now - start; this.m_EventTime = duration.TotalMilliseconds; }
/// <summary> /// 加载词列表 /// </summary> public void InitWordDics() { DateTime start = DateTime.Now; if (GetCache("jcms_dict") == null) { this.htWords = new Hashtable(); Hashtable father = this.htWords; Hashtable forfather = this.htWords; string strChar1; string strChar2; StreamReader reader = new StreamReader(this.DicPath, System.Text.Encoding.UTF8); string strline = reader.ReadLine(); SegList list; Hashtable child = new Hashtable(); long i = 0; while (strline != null && strline.Trim() != "") { i++; strChar1 = strline.Substring(0, 1); strChar2 = strline.Substring(1, 1); if (!this.htWords.ContainsKey(strChar1)) { father = new Hashtable(); this.htWords.Add(strChar1, father); } else { father = (Hashtable)this.htWords[strChar1]; } if (!father.ContainsKey(strChar2)) { list = new SegList(); if (strline.Length > 2) { list.Add(strline.Substring(2)); } else { list.Add("null"); } father.Add(strChar2, list); } else { list = (SegList)father[strChar2]; if (strline.Length > 2) { list.Add(strline.Substring(2)); } else { list.Add("null"); } father[strChar2] = list; } this.htWords[strChar1] = father; strline = reader.ReadLine(); } try { reader.Close(); } catch { } SetCache("jcms_dict", this.htWords); } this.htWords = (Hashtable)GetCache("jcms_dict"); this.alNoise = this.LoadWords(this.NoisePath, this.alNoise); this.alNumber = this.LoadWords(this.NumberPath, this.alNumber); this.alWord = this.LoadWords(this.WordPath, this.alWord); this.alPrefix = this.LoadWords(this.PrefixPath, this.alPrefix); TimeSpan duration = DateTime.Now - start; this.m_EventTime = duration.TotalMilliseconds; }