• c#程序员机试题


    一、题目:

      有一数组: int[] arr = new int[] { 48,1,3,55,15,29,12,33,26,41,56,32};

          1、求出最大值

          2、按每个数字的10位数分组(说明:0~9的位数为0,10~19的位数为1),求出每组的最小值,用Dictionary<int,int> 表示返回结果,返回结果按10位数正序排序。

        参考答案如下:

     1                Dictionary<int, int> SaveMinValue = new Dictionary<int, int>();
     2  2             int[] arr = new int[] { 48,1,3,55,15,29,12,33,26,41,56,32};
     3  3             foreach (var item in arr)
     4  4             {
     5  5                 if (!SaveMinValue.ContainsKey(item / 10))
     6  6                 {
     7  7                     SaveMinValue.Add(item / 10, item);
     8  8                 }
     9  9                 else 
    10 10                 {
    11 11                     if (item<SaveMinValue[item / 10])
    12 12                     {
    13 13                         SaveMinValue[item / 10] = item;
    14 14                     }
    15 15                 }
    16 16             }
    17                //用linq进行排序
    18 17             var dicSort = from objDic in SaveMinValue orderby objDic.Value  select objDic;  
    19 18             foreach (KeyValuePair<int,int> key in SaveMinValue)
    20 19             {
    21 20                 Response.Write("" + key.Key + "最小值为:" + key.Value+"<br>");
    22 21             }
    23          //最大值
    24 22             Response.Write("最大值:" + arr.Max());        

      输出结果:

    第0组最小值为:1
    第1组最小值为:12
    第2组最小值为:26
    第3组最小值为:32
    第4组最小值为:41
    第5组最小值为:55


    最大值:56

  • 相关阅读:
    Session共享的解决方案
    用IIS配置反向代理
    authorization配置
    git之https或http方式设置记住用户名和密码的方法
    微信分享接口
    为你的Visual Studio单独设置代理服务器
    HTTP错误404.13
    MVC5的AuthorizeAttribute详解
    【MVC5】画面多按钮提交
    PetaPoco dynamic
  • 原文地址:https://www.cnblogs.com/rushme/p/7657278.html
Copyright © 2020-2023  润新知