C#-对基元数组进行排序并跟踪其索引的最快方法

本文关键字:索引 跟踪 方法 排序 数组 C#- | 更新日期: 2023-09-27 18:20:27

我需要一个float[]进行排序。我需要知道旧索引在新数组中的位置。这就是为什么我不能使用Array.Sort();或其他什么。因此,我想写一个函数,为我对数组进行排序,并记住每个值的索引:

float[] input  = new float[] {1.5, 2, 0, 0.4, -1, 96, -56, 8, -45};
// sort
float[] output; // {-56, -45, -1, 0, 0.4, 1.5, 2, 8, 96};
int[] indices; // {6, 8, 4, 2, 3, 0, 1, 7, 5};

阵列的大小约为500。我应该如何处理?什么排序算法等。


解决后:它总是让我惊讶于C#的强大。我甚至没有想到它能独自完成这项任务。既然我已经听说Array.Sort()很快,我就接受它。

C#-对基元数组进行排序并跟踪其索引的最快方法

float[] input = new float[] { 1.5F, 2, 0, 0.4F, -1, 96, -56, 8, -45 };
int[] indices = new int[input.Length];
for (int i = 0; i < indices.Length; i++) indices[i] = i;
Array.Sort(input, indices);
// input and indices are now at the desired exit state

基本上,Array.Sort的2参数版本对两个数组应用相同的操作,对第一个数组运行实际的排序比较。这通常是反过来使用的——根据所需的索引重新排列某些内容;但这也有效。

您可以使用Array.Sort()的重载,它接受两个数组,并根据它对第一个数组的排序方式对第二个数组进行排序:

float[] input  = new [] { 1.5f, 2, 0, 0.4f, -1, 96, -56, 8, -45 };
int[] indices = Enumerable.Range(0, input.Length).ToArray();
Array.Sort(input, indices);

您可以创建一个新的索引数组,然后使用array对它们进行排序。排序并将input视为键:

float[] input = new float[] { 1.5F, 2, 0, 0.4F, -1, 96, -56, 8, -45 };
int[] indicies = Enumerable.Range(0, input.Length).ToArray();
Array.Sort(input, indicies);

如果使用linq:

    float[] input = new float[] { 1.5F, 2, 0, 0.4F, -1, 96, -56, 8, -45 };
    var result = input.Select(x => new { Value = x, Index = input.ToList().IndexOf(x)}).OrderBy(x => x.Value).ToList();
    // sort
    float[] output = result.Select(x => x.Value).ToArray();
    int[] indices = result.Select(x => x.Index).ToArray();

在结果中,您得到了具有值及其索引的对象。

List<KeyValuePair<int,float>>和自定义分类器也可以工作。每一对的密钥保存原始索引。

    private void Form1_Load(object sender, EventArgs e)
    {           
        List<KeyValuePair<int,float>> data = new List<KeyValuePair<int,float>>
        {
             new KeyValuePair<int,float>(0,1.5f),
             new KeyValuePair<int,float>(1,2),
             new KeyValuePair<int,float>(2,0),
             new KeyValuePair<int,float>(3,0.4f),
             new KeyValuePair<int,float>(4,-1),
             new KeyValuePair<int,float>(5,96),
             new KeyValuePair<int,float>(6,-56),
             new KeyValuePair<int,float>(7,8),
             new KeyValuePair<int,float>(8,-45)
        };
        data.Sort(SortByValue);
        foreach (KeyValuePair<int, float> kv in data)
        {
            listBox1.Items.Add(kv.Key.ToString() + " - " + kv.Value.ToString());
        }

    }
    private int SortByValue(KeyValuePair<int, float> a, KeyValuePair<int, float> b)
    {
        return a.Value.CompareTo(b.Value);
    }