1. 程式人生 > >c#Dictionary鍵值對的使用

c#Dictionary鍵值對的使用

直接粘程式碼吧

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

//利用鍵值對這個資料結構統計一個句子中每個單詞出現的個數。
class Program {
    public static void Main() {
        var dic= new Dictionary<char,int>();
        string str = "welcome to china,and bei jing huan ying ni ";

        for (int i = 0; i < str.Length; i++) {
            if (!dic.ContainsKey(str[i])) {
                dic.Add(str[i], 1);
            } else {
                //如果這個鍵值對中存在這個元素,就把個數加1;
                dic[str[i]]++;
            }
        }

        //利用一個鍵值對KeyValuePair來訪問這個元素
        foreach (KeyValuePair<char, int> item in dic) {
            Console.WriteLine("字元{0}  {1}在這個句子中出現了{2}次",item.Key,(int)item.Key, item.Value);
        }
        Console.ReadKey();
    }
}