欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#数组反转与排序实例分析

程序员文章站 2023-12-13 20:32:22
本文实例分析了c#数组反转与排序的方法。分享给大家供大家参考。具体实现方法如下: c#数组反转 复制代码 代码如下:using system;  usin...

本文实例分析了c#数组反转与排序的方法。分享给大家供大家参考。具体实现方法如下:

c#数组反转

复制代码 代码如下:
using system; 
using system.collections.generic; 
using system.linq; 
using system.text; 
 
namespace 数据反转 

    class program 
    { 
        static void main(string[] args) 
        { 
            string[] strallay = { "*", "李世民", "秦始皇", "成吉思汗", "*","*"}; 
            string s; 
            for (int i = 0; i < strallay.length / 2; i++)//strallay.length/2是因为经过(将数组的长度值除以2)次就可以将数组成员进行反转了 
            { 
                s = strallay[i]; 
                strallay[i] = strallay[strallay.length - 1 - i];//如果i等于数组第一项值(*)的时候,将它与最后一个值(*)互换。 
                strallay[strallay.length - 1 - i] = s; 
            } 
            foreach (string ss in strallay) 
            { 
                console.write(ss+" " ); 
            } 
            console.readkey(); 
        } 
    } 
}

c#数组排序:
复制代码 代码如下:
using system; 
using system.collections.generic; 
using system.linq; 
using system.text; 
 
namespace 数组 

    class program 
    { 
        static void main(string[] args) 
        { 
            //输出一个数组里的最大的数值; 
            /*
            int[] arr = new int[] { 10, 9, 15, 6, 24, 3, 0, 7, 19, 1 };
            int max = 0;
            for (int i = 0; i < arr.length - 1; i++)
            {
                if (arr[i] > max)
                {
                    max = arr[i];
                }
            }
            console.writeline(max);
             **/ 
            //按大小顺序输出数组的值 
            int[] list = new int[] { 10, 9, 15, 6, 24, 3, 0, 7, 19, 1 ,100,25,38}; 
            /*
                for (int i = 0; i < list.length-1; i++)
                  {
                      for (int j = i+1; j < list.length; j++)
                      {
                          if (list[i] > list[j])
                          {
                             int temp = list[i];
                             list[i] = list[j];
                             list[j] = temp;
                         }
                     }
                 }*/ 
                /// <summary> 
         /// 插入排序法 
         /// </summary> 
         /// <param name="list"></param> 
         
             for (int i = 1; i < list.length; i++) 
              { 
                 int t = list[i]; 
                 int j = i; 
                 while ((j > 0) && (list[j - 1] > t)) 
                 { 
                     list[j] = list[j - 1]; 
                     --j; 
                 } 
                 list[j] = t; 
             } 
 
                foreach (int forstr in list) 
                { 
                    console.write(forstr + " "); 
                } 
            console.readkey(); 
        } 
    } 
}

希望本文所述对大家的c#程序设计有所帮助。

上一篇:

下一篇: