• 大小: 1.63KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 算法  

资源简介

可直接拿来测试哦

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;
using System.Text.Regularexpressions;

namespace Test.TFIDF
{
    class IF_IDF
    {
        /// 
        /// 获取拆分后的词组以及每个词的出现次数
        /// 

        /// 
        /// 
        public Dictionary GetWordsFrequnce(string text)
        {
            
            Dictionary dictionary = new Dictionary();
            Regex regex = new Regex(@“[\u4e00-\u9fa5]“);//分拣出中文字符
            MatchCollection results = regex.Matches(text);
            int temp;
            foreach (Match word in results)
            {
                if (dictionary.TryGetValue(word.Value out temp))
                {
              

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        6018  2012-07-22 20:19  IFIDF.cs

评论

共有 条评论