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

C# 数组排序带索引

程序员文章站 2023-11-23 11:13:22
想到了两种方法来实现,分别利用了List.Sort()和Dictionary.OrderBy()方法,代码如下: 输出正常! 总觉得应该有很方便的方法来实现,奈何想不出来。。。 ......

想到了两种方法来实现,分别利用了list.sort()和dictionary.orderby()方法,代码如下:

 1            int[] arrint = new int[] { 11, 38, 12, 9, 234, 24, 441, 24, 45, 35 };
 2 
 3             //list.sort()
 4             list<int> lstorg = new list<int>(), lstsort = new list<int>();
 5             lstorg.addrange(arrint);
 6             lstsort.addrange(arrint);
 7             lstsort.sort();
 8 
 9             list<int> lstindex = new list<int>();
10             for (int i = 0; i < lstsort.count; i++)
11             {
12                 int index = lstorg.indexof(lstsort[i]);
13                 while (lstindex.indexof(index) >= 0)
14                 {
15                     index = lstorg.indexof(lstsort[i], index + 1);
16                 }
17                 lstindex.add(index);
18                 console.write("({0},{1})", index, lstsort[i]);
19             }
34             console.readline();    
 1             int[] arrint = new int[] { 11, 38, 12, 9, 234, 24, 441, 24, 45, 35 };
 2 
 3             //dictionary.orderby()
 4             dictionary<int, int> dic = new dictionary<int, int>();
 5             for (int i = 0; i < arrint.length; i++)
 6             {
 7                 dic.add(i, arrint[i]);
 8             }
 9             dic = dic.orderby(o => o.value).todictionary(p => p.key, o => o.value);
10             foreach (var item in dic)
11             {
12                 console.write("({0},{1})", item.key, item.value);
13             }
14 
15             console.readline();

输出正常!

总觉得应该有很方便的方法来实现,奈何想不出来。。。