资源简介
可直接拿来测试哦
代码片段和文件信息
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
相关资源
- XXTEA算法的C#实现和JS实现,可以互相
- 去雾算法halcon代码实现
- 2048核心算法(.net core 控制台版)
- RoundRobinDemo- c#时间片轮转算法
- LRUDemo-页面置换算法LRU模拟c#
- sift算法
- 坦克的算法
- 数据挖掘算法
- c#apriori关联规则算法
- 德州扑克核心算法
- a星寻路 算法
- 限制位置简单算法版
- MyBank 操作系统银行家算法
-
AForge.NET_fr
amework-2.1.3 一个C#下面的图 -
time
table-csharp c#/CSharp 遗传算法高校 - NBCFfuction 协同过滤推荐算法
- tin 用C#编的三角网生成算法。操作方
- com 图像处理算法
- A*算法 C#源代码
- 蚁群算法实现路由选择拥塞避免C#实现
- 遗传算法,C#代码,简单入手
- C#已知三点求圆方程算法
- 中国商用加解密算法SMS4的加解密程序
- C#实习分配算法
- 银行家算法 c#
- C#实现字符串SHA-512加密算法工程
- DES算法c#实现
- 蚁群算法尤其是里面的C#算法,太邪恶
- c#道格拉斯抽稀算法
- KNNk—近邻算法算法C#实现
评论
共有 条评论