亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

中文分詞技術

發布時間: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

特克斯县| 屏边| 宁河县| 武陟县| 棋牌| 曲周县| 沧州市| 五原县| 丹阳市| 厦门市| 武清区| 饶平县| 虎林市| 湘乡市| 太保市| 双牌县| 尖扎县| 浦东新区| 峨眉山市| 松江区| 新津县| 噶尔县| 台湾省| 昔阳县| 南京市| 仙居县| 满洲里市| 秭归县| 三明市| 曲阜市| 澎湖县| 新和县| 防城港市| 西安市| 广州市| 临江市| 伊宁市| 富源县| 海丰县| 松江区| 保山市|