A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 笔墨伺候 中级黑马   /  2012-10-18 13:19  /  1947 人查看  /  7 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

如果我们需要用到一个字典,要存入键和值,如果值是int型的,那么我们该怎么去按照值中的大小来排序呢
字典本身有提供这样的方法吗

7 个回复

倒序浏览
有对应的
回复 使用道具 举报
yanner 发表于 2012-10-18 13:38
有对应的

能具体说明一下么
回复 使用道具 举报
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 字典排序
{
    class Program
    {
        static void Main(string[] args)
        {
            Dictionary<string, int> dic = new Dictionary<string, int>
            {
                {"张飞",60},{"关羽",70},{"刘备",50},{"赵云",80},{"马超",40}
            };
            Console.WriteLine("---------------排序之前--------------");
            foreach (var item in dic)
            {
                Console.WriteLine("姓名:{0}, 攻击力:{1}", item.Key, item.Value);
            }
            //按照字典的值进行降序排列.
            var result = from d in dic orderby d.Value descending select d;
            Console.WriteLine("---------------排序之后--------------");
            foreach (var item in result)
            {
                Console.WriteLine("姓名:{0}, 攻击力:{1}", item.Key, item.Value);
            }
            Console.ReadKey();
        }
    }
}

评分

参与人数 1技术分 +1 收起 理由
宋天琪 + 1

查看全部评分

回复 使用道具 举报
秦敖 发表于 2012-10-18 13:53
using System;
using System.Collections.Generic;
using System.Linq;

高手,学习了,原来字典还有这样的用法啊:victory:
回复 使用道具 举报
d.OrderBy(a=>a.Value).ToDictionary(a=>a.Key,a.Value);

评分

参与人数 1技术分 +1 收起 理由
宋天琪 + 1

查看全部评分

回复 使用道具 举报
a=>a.Value
手机不好打字
回复 使用道具 举报
yanner 发表于 2012-10-18 14:12
a=>a.Value
手机不好打字

学习了:)
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马