1.概述
SortedDictionary<int, int> keyValuePairs = new SortedDictionary<int, int>();
keyValuePairs.Add(arrayInt[i], arrayInt[i]);
keyValuePairs[i]
2.代码
using System;
using System.Collections.Generic;
namespace ConsoleApp11
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
SortedDictionary<int, int> keyValuePairs = new SortedDictionary<int, int>();
int[] arrayInt = { 2, 5, 4, 1, 3 };
Console.WriteLine("输入的顺序");
for(int i=0;i< arrayInt.Length;i++) {
Console.WriteLine(arrayInt[i]);
keyValuePairs.Add(arrayInt[i], arrayInt[i]);
}
Console.WriteLine("自动排序的结果");
for (int i =1;i< 6;i++)
{
Console.WriteLine(keyValuePairs[i]);
}
Console.ReadKey();
}
}
}
3.运行结果

这篇博客展示了如何在C#中使用SortedDictionary对整数数组进行自动排序。代码示例创建了一个SortedDictionary,并将输入的整数数组元素作为键值对添加进去,然后输出排序后的结果。
198

被折叠的 条评论
为什么被折叠?



