国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

C#判斷單詞個數方法總結

2019-10-29 21:03:27
字體:
來源:轉載
供稿:網友

方法一:

判斷英文單詞個數:

using System;namespace FindWord{  class Program  {    static void Main(string[] args)    {      string space = " ";      string str = "hello world" + space;      int count = 0;      bool start = false;      for (int i=0;i<str.Length;i++)      {        if (Char .IsLetter(str[i]))        {          start = true;        }        if (!Char.IsLetter(str[i])&&start)        {          count++;          start = false;        }              }      Console.WriteLine(count);      Console.ReadLine();    }  }}

方法二:

C#統計英文字符串中單詞個數思路如下:

1.使用的Hashtable(高效)集合,記錄每個單詞出現的次數

2.采用ArrayList對Hashtable中的Keys按字母序排列

3.排序使用插入排序(穩定)

public void StatisticsWords(string path) {  if (!File.Exists(path))  {  Console.WriteLine("文件不存在!");  return;  }  Hashtable ht = new Hashtable(StringComparer.OrdinalIgnoreCase);  StreamReader sr = new StreamReader(path, System.Text.Encoding.UTF8);  string line = sr.ReadLine();  string[] wordArr = null;  int num = 0;  while (line.Length > 0)  {  //  MatchCollection mc = Regex.Matches(line, @"/b[a-z]+", RegexOptions.Compiled | RegexOptions.IgnoreCase);  //foreach (Match m in mc)  //{  //  if (ht.ContainsKey(m.Value))  //  {  //    num = Convert.ToInt32(ht[m.Value]) + 1;  //    ht[m.Value] = num;  //  }  //  else  //  {  //    ht.Add(m.Value, 1);  //  }  //}  //line = sr.ReadLine();  wordArr = line.Split(' ');  foreach (string s in wordArr)  {  if (s.Length == 0)  continue;  //去除標點  line = Regex.Replace(line, @"[/p{P}*]", "", RegexOptions.Compiled);  //將單詞加入哈希表  if (ht.ContainsKey(s))  {  num = Convert.ToInt32(ht[s]) + 1;  ht[s] = num;  }  else  {  ht.Add(s, 1);  }  }  line = sr.ReadLine();  }ArrayList keysList = new ArrayList(ht.Keys);  //對Hashtable中的Keys按字母序排列  keysList.Sort();  //按次數進行插入排序【穩定排序】,所以相同次數的單詞依舊是字母序  string tmp = String.Empty;  int valueTmp = 0;  for (int i = 1; i < keysList.Count; i++)  {  tmp = keysList[i].ToString();  valueTmp = (int)ht[keysList[i]];//次數  int j = i;  while (j > 0 && valueTmp > (int)ht[keysList[j - 1]])  {  keysList[j] = keysList[j - 1];  j--;  }  keysList[j] = tmp;//j=0  }  //打印出來  foreach (object item in keysList)  {  Console.WriteLine((string)item + ":" + (string)ht[item]);  }  }

 


注:相關教程知識閱讀請移步到c#教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 临潭县| 葵青区| 兰西县| 平塘县| 纳雍县| 望奎县| 宁明县| 齐齐哈尔市| 石景山区| 丁青县| 尚义县| 乌兰县| 新安县| 汶川县| 九龙坡区| 土默特右旗| 安乡县| 黔西县| 凤翔县| 纳雍县| 孟州市| 府谷县| 正阳县| 涟水县| 西乌| 南阳市| 南安市| 台湾省| 教育| 进贤县| 深圳市| 平昌县| 福海县| 靖远县| 东乌珠穆沁旗| 高邮市| 台南市| 龙海市| 威海市| 四平市| 闽侯县|