对数据进行排序,最大的和最小的穿插
Posted 荣码一生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对数据进行排序,最大的和最小的穿插相关的知识,希望对你有一定的参考价值。
List<int> list = new List<int>(); list.AddRange(new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }); int len = list.Count - 1; list.Sort(); list.ForEach(Console.WriteLine); List<int> listLast = new List<int>(); for (int i = len-1; i >=0; i--) { if (i % 2 == 0) { listLast.Add(list.Max()); list.Remove(list.Max()); continue; } listLast.Add(list.Min()); list.Remove(list.Min()); } listLast.ForEach(Console.WriteLine); for (int i = len - 1; i >= 0; i--) { if (i >= (len - 1) / 2) break; if (i % 2 == 0) continue; int temp = list[i]; list[i] = list[len - 1]; list[len - 1] = temp; } Console.ReadKey();
以上是关于对数据进行排序,最大的和最小的穿插的主要内容,如果未能解决你的问题,请参考以下文章
自动生成10个整数(1~100),求出生成数组中的最大值和最小值,以及显示排序后的数据。运行效果如图所示