91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

C#中怎么判斷單詞的個數

發布時間:2021-07-07 18:06:15 來源:億速云 閱讀:297 作者:Leah 欄目:編程語言

C#中怎么判斷單詞的個數,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

方法一:

判斷英文單詞個數:

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#中怎么判斷單詞的個數的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

洪雅县| 盐城市| 绩溪县| 清丰县| 仙桃市| 肥乡县| 灵川县| 西充县| 曲阳县| 黄龙县| 铁岭县| 当雄县| 南通市| 衡东县| 潼关县| 金湖县| 遂川县| 郯城县| 洛川县| 商洛市| 都安| 天镇县| 新野县| 乐山市| 子洲县| 古蔺县| 丘北县| 谷城县| 上饶市| 望奎县| 东乌| 弥勒县| 渑池县| 镶黄旗| 故城县| 裕民县| 县级市| 台江县| 金溪县| 普定县| 辽中县|