91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

中文分詞技術

發布時間:2020-04-11 00:28:02 來源:網絡 閱讀:427 作者:bIgVe 欄目:開發技術
//正向最大匹配分詞算法 ,耗時長,這并不是一個很好的算法,我的這個輸出是逆向輸入的
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ClusterCharater
{
    public class SplitChineseCharacter
    {

        private String[] dictionary = { "今天", "是","星期" ,"六","星期六" }; //詞典
        private String input = null;
        public List<String> Reslut = new List<string>();

        public SplitChineseCharacter(String input)
        {
            this.input = input;
        }

        public void start()
        {
            String temp = null;
            for (int i = 0; i < this.input.Length; i++)
            {
                temp = this.input.Substring(i); // 每次從字符串的首部截取一個字,并存到temp中
                // 如果該詞在字典中, 則刪除該詞并在原始字符串中截取該詞
                if (this.isInDictionary(temp))
                {
                    Reslut.Add(temp);
                    this.input = this.input.Replace(temp, "");
                    i = -1; // i=-1是因為要重新查找, 而要先執行循環中的i++
                }
            }

            // 當前循環完畢,詞的末尾截去一個字,繼續循環, 直到詞變為空
            if (null != this.input && !"".Equals(this.input))
            {
                this.input = this.input.Substring(0, this.input.Length - 1);
                this.start();
            }
        }

        //判斷當前詞是否在字典中
        public Boolean isInDictionary(String temp)
        {
            for (int i = 0; i < this.dictionary.Length; i++)
            {
                if (temp.Equals(this.dictionary[i]))
                {
                    return true;
                }
            }
            return false;
        }
    }
}

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace ClusterCharater
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

       private void button1_Click(object sender, EventArgs e)

        { 

            String s=inputtext.Text.Trim();

            SplitChineseCharacter scc = new SplitChineseCharacter(s);


            scc.start();

            foreach (String ss in scc.Reslut)

            {


                output.Text += ss+"/";

           }

        }

    }

}

中文分詞技術

 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙游县| 敖汉旗| 获嘉县| 华阴市| 云林县| 巩留县| 兴业县| 同仁县| 舞阳县| 内丘县| 白城市| 瑞丽市| 孟村| 遵化市| 清水县| 锡林郭勒盟| 晋宁县| 乌苏市| 申扎县| 南木林县| 达孜县| 湄潭县| 新化县| 五华县| 栖霞市| 永安市| 区。| 河南省| 哈尔滨市| 绥中县| 荣昌县| 舟山市| 阳东县| 江华| 黄浦区| 永仁县| 牙克石市| 中方县| 北票市| 济源市| 汝南县|