เคล็ดลับคือการใช้การจัดเรียงที่มั่นคง ฉันได้สร้างคลาสวิดเจ็ตที่สามารถมีข้อมูลการทดสอบของคุณ:
public class Widget : IComparable
{
int x;
int y;
public int X
{
get { return x; }
set { x = value; }
}
public int Y
{
get { return y; }
set { y = value; }
}
public Widget(int argx, int argy)
{
x = argx;
y = argy;
}
public int CompareTo(object obj)
{
int result = 1;
if (obj != null && obj is Widget)
{
Widget w = obj as Widget;
result = this.X.CompareTo(w.X);
}
return result;
}
static public int Compare(Widget x, Widget y)
{
int result = 1;
if (x != null && y != null)
{
result = x.CompareTo(y);
}
return result;
}
}
ฉันใช้ IComparable ดังนั้นจึงสามารถจัดเรียงตาม List.Sort () ได้อย่างไม่คงที่
อย่างไรก็ตามฉันยังใช้วิธีการเปรียบเทียบแบบคงที่ซึ่งสามารถส่งผ่านในฐานะตัวแทนของวิธีการค้นหา
ฉันยืมวิธีการเรียงลำดับการแทรกนี้จากC # 411 :
public static void InsertionSort<T>(IList<T> list, Comparison<T> comparison)
{
int count = list.Count;
for (int j = 1; j < count; j++)
{
T key = list[j];
int i = j - 1;
for (; i >= 0 && comparison(list[i], key) > 0; i--)
{
list[i + 1] = list[i];
}
list[i + 1] = key;
}
}
คุณจะใส่สิ่งนี้ไว้ในคลาสตัวช่วยการจัดเรียงที่คุณพูดถึงในคำถามของคุณ
ตอนนี้วิธีใช้:
static void Main(string[] args)
{
List<Widget> widgets = new List<Widget>();
widgets.Add(new Widget(0, 1));
widgets.Add(new Widget(1, 1));
widgets.Add(new Widget(0, 2));
widgets.Add(new Widget(1, 2));
InsertionSort<Widget>(widgets, Widget.Compare);
foreach (Widget w in widgets)
{
Console.WriteLine(w.X + ":" + w.Y);
}
}
และส่งออก:
0:1
0:2
1:1
1:2
Press any key to continue . . .
สิ่งนี้อาจถูกลบล้างโดยผู้ได้รับมอบหมายที่ไม่ระบุชื่อ แต่ฉันจะฝากไว้ให้คุณ
แก้ไข : และ NoBugz แสดงให้เห็นถึงพลังของวิธีการที่ไม่ระบุชื่อ ... ดังนั้นลองพิจารณาโรงเรียนเก่าของฉันเพิ่มเติม: P