最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

C#判斷單詞個(gè)數(shù)方法總結(jié)

 更新時(shí)間:2018年03月25日 14:23:19   投稿:laozhang  
我們給大家總計(jì)了C#中判斷英文單詞個(gè)數(shù)的方法以及排序的技巧,對(duì)此有需要的朋友可以測(cè)試下。

方法一:

判斷英文單詞個(gè)數(shù):

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#統(tǒng)計(jì)英文字符串中單詞個(gè)數(shù)思路如下:

1.使用的Hashtable(高效)集合,記錄每個(gè)單詞出現(xiàn)的次數(shù)

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

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

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;
  //去除標(biāo)點(diǎn)
  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);
  //對(duì)Hashtable中的Keys按字母序排列
  keysList.Sort();
  //按次數(shù)進(jìn)行插入排序【穩(wěn)定排序】,所以相同次數(shù)的單詞依舊是字母序
  string tmp = String.Empty;
  int valueTmp = 0;
  for (int i = 1; i < keysList.Count; i++)
  {
  tmp = keysList[i].ToString();
  valueTmp = (int)ht[keysList[i]];//次數(shù)
  int j = i;
  while (j > 0 && valueTmp > (int)ht[keysList[j - 1]])
  {
  keysList[j] = keysList[j - 1];
  j--;
  }
  keysList[j] = tmp;//j=0
  }
  //打印出來(lái)
  foreach (object item in keysList)
  {
  Console.WriteLine((string)item + ":" + (string)ht[item]);
  }
  }

相關(guān)文章

最新評(píng)論

长宁区| 黑龙江省| 惠水县| 旺苍县| 丹巴县| 屯留县| 个旧市| 长治市| 禄劝| 大关县| 平江县| 甘孜县| 洛扎县| 奈曼旗| 高邮市| 红桥区| 惠东县| 桦甸市| 五原县| 肇州县| 钟山县| 武乡县| 台湾省| 江源县| 会东县| 娄烦县| 昌黎县| 郧西县| 盐亭县| 得荣县| 蒲城县| 延庆县| 秦皇岛市| 桐柏县| 吉首市| 和平县| 连江县| 庆安县| 曲靖市| 信宜市| 通河县|