欢迎来到入门教程网!

C#教程

当前位置:主页 > 软件编程 > C#教程 >

C#判断单词个数方法总结

来源:本站原创|时间:2020-01-10|栏目: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#利用GDI+画图的基础实例教程

栏    目:C#教程

下一篇:C#基于FTP协议的简易软件自动升级程序

本文标题:C#判断单词个数方法总结

本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/5222.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有