2

我有两个列表:

student = new list<string>() {"Bob" , "Alice" , "Roger" , "Oscar"};

Marks = new list<int>() {80,95,70,85};

我想以最快的方式按分数对学生进行排序,预期的输出必须是:

学生 = {"爱丽丝","奥斯卡","鲍勃","罗杰"}

列表方法下是否有任何命令与目标相同list.sortlist.orderby实现目标?

4

3 回答 3

10

不要使用 2 个数组。

您最好的方法是使用一个类来存储成对的数据。

public class Student
{
  public string Name { get; set; }
  public int Mark { get; set; }
}

一旦你有一个学生对象数组

List<Student> students = new List<Student>();
students.Add(...);

然后您可以将名称与标记一起排序

var sortedStudents = students.OrderBy(s => s.Mark).ToList();
于 2013-05-25T14:39:14.893 回答
2

您可以将 Zip 函数与元组一起使用。

student.Zip(Marks, (s, n) => new Tuple<string, int>(s,n)).Sort(t => t.Item2).Select(t => t.Item1);
于 2013-05-25T14:45:04.943 回答
1

使用Tuple类将名称和分数配对。

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        List<Tuple<string, int>> list = new List<Tuple<string, int>>();
        list.Add(new Tuple<string, int>("Bob",80 ));
        list.Add(new Tuple<string, int>("Alice", 95));
        list.Add(new Tuple<string, int>("Roger", 70));
        list.Add(new Tuple<string, int>("Oscar", 85));

        // Use Sort method with Comparison delegate.
        // ... Has two parameters; return comparison of Item2 on each.
        list.Sort((a, b) => a.Item2.CompareTo(b.Item2));

        foreach (var element in list)
        {
            Console.WriteLine(element);
        }
    }
}
于 2013-05-25T14:45:31.560 回答