基本信息
源码名称:C#分词程序源代码实例
源码大小:0.99M
文件格式:.rar
开发语言:C#
更新时间:2023-06-08
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
C#分词程序源代码实例
能够实现对字符串的分词, 代码工整, 风格优良, 对于自己想写个分词程序的人有一定的帮助。
文件清单
├── 51bcw下载必读.txt
├── Backup
│ ├── SegTest
│ │ ├── App.ico
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── SegTest.csproj
│ │ └── SegTest.csproj.user
│ ├── ShootSeg
│ │ ├── AssemblyInfo.cs
│ │ ├── SegList.cs
│ │ ├── Segment.cs
│ │ ├── ShootSeg.csproj
│ │ └── ShootSeg.csproj.user
│ ├── ShootSeg.sln
│ └── ShootSeg.suo
├── Logo.gif
├── SegTest
│ ├── App.ico
│ ├── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── data
│ │ │ ├── sDict.txt
│ │ │ ├── sNoise.txt
│ │ │ ├── sNumber.txt
│ │ │ ├── sPrefix.txt
│ │ │ └── sWord.txt
│ │ ├── SegTest.exe
│ │ ├── SegTest.pdb
│ │ ├── SegTest.vshost.exe
│ │ ├── SegTest.vshost.exe.manifest
│ │ ├── ShootSeg 1.0.dll
│ │ ├── ShootSeg 1.0.pdb
│ │ └── ShootSeg.dll
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── obj
│ │ └── Debug
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── SegTest.csproj.FileListAbsolute.txt
│ │ ├── SegTest.csproj.GenerateResource.Cache
│ │ ├── SegTest.exe
│ │ ├── SegTest.Form1.resources
│ │ ├── SegTest.pdb
│ │ ├── SegTest.projdata
│ │ ├── temp
│ │ └── TempPE
│ ├── SegTest.csproj
│ └── SegTest.csproj.user
├── ShootSeg
│ ├── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── ShootSeg 1.0.dll
│ │ ├── ShootSeg 1.0.pdb
│ │ ├── ShootSeg.dll
│ │ └── ShootSeg.pdb
│ ├── obj
│ │ └── Debug
│ │ ├── ShootSeg 1.0.dll
│ │ ├── ShootSeg 1.0.pdb
│ │ ├── ShootSeg.csproj.FileListAbsolute.txt
│ │ ├── ShootSeg.dll
│ │ ├── ShootSeg.pdb
│ │ ├── ShootSeg.projdata
│ │ ├── temp
│ │ └── TempPE
│ ├── SegList.cs
│ ├── Segment.cs
│ ├── ShootSeg.csproj
│ └── ShootSeg.csproj.user
├── ShootSeg.sln
├── ShootSeg.suo
├── test1.txt
├── test2.txt
├── UpgradeLog.XML
├── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Minus.gif
│ ├── UpgradeReport_Plus.gif
│ └── UpgradeReport.xslt
├── 使用说明.txt
├── 效果.txt
└── 更多C#源码下载.url
19 directories, 67 files
C#分词程序源代码实例
能够实现对字符串的分词, 代码工整, 风格优良, 对于自己想写个分词程序的人有一定的帮助。
文件清单
├── 51bcw下载必读.txt
├── Backup
│ ├── SegTest
│ │ ├── App.ico
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── SegTest.csproj
│ │ └── SegTest.csproj.user
│ ├── ShootSeg
│ │ ├── AssemblyInfo.cs
│ │ ├── SegList.cs
│ │ ├── Segment.cs
│ │ ├── ShootSeg.csproj
│ │ └── ShootSeg.csproj.user
│ ├── ShootSeg.sln
│ └── ShootSeg.suo
├── Logo.gif
├── SegTest
│ ├── App.ico
│ ├── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── data
│ │ │ ├── sDict.txt
│ │ │ ├── sNoise.txt
│ │ │ ├── sNumber.txt
│ │ │ ├── sPrefix.txt
│ │ │ └── sWord.txt
│ │ ├── SegTest.exe
│ │ ├── SegTest.pdb
│ │ ├── SegTest.vshost.exe
│ │ ├── SegTest.vshost.exe.manifest
│ │ ├── ShootSeg 1.0.dll
│ │ ├── ShootSeg 1.0.pdb
│ │ └── ShootSeg.dll
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── obj
│ │ └── Debug
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── SegTest.csproj.FileListAbsolute.txt
│ │ ├── SegTest.csproj.GenerateResource.Cache
│ │ ├── SegTest.exe
│ │ ├── SegTest.Form1.resources
│ │ ├── SegTest.pdb
│ │ ├── SegTest.projdata
│ │ ├── temp
│ │ └── TempPE
│ ├── SegTest.csproj
│ └── SegTest.csproj.user
├── ShootSeg
│ ├── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── ShootSeg 1.0.dll
│ │ ├── ShootSeg 1.0.pdb
│ │ ├── ShootSeg.dll
│ │ └── ShootSeg.pdb
│ ├── obj
│ │ └── Debug
│ │ ├── ShootSeg 1.0.dll
│ │ ├── ShootSeg 1.0.pdb
│ │ ├── ShootSeg.csproj.FileListAbsolute.txt
│ │ ├── ShootSeg.dll
│ │ ├── ShootSeg.pdb
│ │ ├── ShootSeg.projdata
│ │ ├── temp
│ │ └── TempPE
│ ├── SegList.cs
│ ├── Segment.cs
│ ├── ShootSeg.csproj
│ └── ShootSeg.csproj.user
├── ShootSeg.sln
├── ShootSeg.suo
├── test1.txt
├── test2.txt
├── UpgradeLog.XML
├── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Minus.gif
│ ├── UpgradeReport_Plus.gif
│ └── UpgradeReport.xslt
├── 使用说明.txt
├── 效果.txt
└── 更多C#源码下载.url
19 directories, 67 files