码迷,mamicode.com
首页 > 其他好文 > 详细

看到笔试题目

时间:2014-11-29 00:12:14      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   for   on   div   

给定一个字符串 string str = "问答,是网旗下专业的免费知识问答平台,帮助建设行业从业者解决在学习和工作中遇到的实际问题,让建筑人不再有疑问";

编写一个函数找出字符串中出现最多的字符

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            string str = "天工问答,是天工网旗下专业的免费知识问答平台,帮助建设行业从业者解决在学习和工作中遇到的实际问题,让建筑人不再有疑问";
            Dictionary<char, int> dic = new Dictionary<char, int>();
            for (int i = 0; i < str.Length; i++)
            {
                if (!dic.ContainsKey(str[i]))
                {
                    dic[str[i]] = 1;
                }
                else
                {
                    dic[str[i]]++;
                }
                
            }
            int maxvalue = dic.Values.Max();
            foreach (char c in dic.Keys)
            {
                if(dic[c]==maxvalue)
                {
                    Console.WriteLine(c);
                    Console.ReadKey();
            }
            }
            
        }
    }
}

 

看到笔试题目

标签:style   blog   io   ar   color   sp   for   on   div   

原文地址:http://www.cnblogs.com/zhanying/p/4129626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!