所以这是我的代码
public void BubbleSort<T>(T[] array) where T : IComparable<T>
{
for (int i = 0; i < array.Length; i++)
{
for (int j = 1; j < array.Length; j++)
{
if (array[j] < array[j - 1])
{
}
}
}
}
在你拍摄之前因为没有搜索而被击落。我已经搜索过,其中一个关于 SO 的答案说使用无与伦比的界面来解决问题。
不幸的是,我不会因为这个错误而去任何地方。