我正在尝试制作一个程序,让用户可以放入一些城市和城市的温度。之后,温度列表将自行排序,以便我可以获得列表中最冷和最热的城市。但问题是只有温度列表才会被排序。这使得城市的温度与以前不同。
所以我可以将两个列表链接在一起,这样当第二个列表中的温度发生变化时,原来得到温度的城市会变成什么地方?
我对编程很陌生。
感谢。
答案 0 :(得分:5)
您可能希望将城市名称和城市温度放在一起,例如
public class City
{
public string Name;
public double Temperature;
// etc.
}
然后创建一个List<City>
,只要您需要根据特定字段对该列表进行排序,就可以使用Linq(using System.Linq;
)对列表进行排序
List<City> sortedList = cityList.OrderBy(city => city.Temperature).ToList();
// or if you want the list sorted the other way around:
sortedList = cityList.OrderByDescending(city => city.Temperature).ToList();
修改强>
如果您使用的是3.5之前的.NET版本,则不会有任何Linq,因此您需要一些替代方案:
如果您只需要一个排序顺序,则可以实现IComparable
接口
public class City : IComparable
{
public int CompareTo(object obj)
{
City other = obj as City;
if (other == null)
// obj was not a City, so this should throw an exception in my opinion
throw new ArgumentException;
return this.Temperature.CompareTo(other.Temperature);
}
}
然后,您可以使用cityList.Sort()
或者,如果您希望能够按温度排序列表,有时候按名称排序,则需要与代表合作
cityList.Sort(delegate (City a, City b)
{
// -1 => a < b
// 0 => a == b
// 1 => a > b
return a.Name.CompareTo(b.Name);
});
// cityList is now sorted by name
cityList.Sort(delegate (City a, City b)
{
// -1 => a < b
// 0 => a == b
// 1 => a > b
return a.Temperature.CompareTo(b.Temperature);
});
// cityList is now sorted by temperature
答案 1 :(得分:2)
你需要有结构来同时保持城市和温度......例如
public class CityInfo
{
public string CityName {get; set;}
public float Temperature {get; set;}
}
然后创建此类的列表。
List<CityInfo> citiInfos = new List<CityInfo>();
然后你可以基于排序:
关于城市名称:
var sortedByCity = citiInfos.OrderBy(cityInfo => cityInfo.CityName);
关于温度:
var sortedByTemp = citiInfos.OrderBy(cityInfo => cityInfo.Temperature);
答案 2 :(得分:1)
我建议您创建一个包含城市信息和相应温度的对象,例如
class City
{
public string Name {get; private set;}
public int Inhabitants {get; private set;}
public float Temperature {get; private set;}
public City (string name, int inhabitants, float temp)
{
Name = name;
Inhabitants = inhabitants;
Temperature = temperature;
}
}
然后创建List<City>
,使用
cityListName.Add(new City("CityName",9000,16.5));
...
然后您可以使用List
cityListName.OrderBy((city)=>city.Temperature)
进行排序
我希望这有帮助。 如果您有其他问题,请随时提出。