public int[] InsertSort(int[] list)
{
int m_lenth = list.Length;
int m_sortNum;
for(int i = 1; i < m_lenth; i++)//每次取一个数
{
for(int s = i - 1; s >= 0 ; s--)//插入有序区
{
if(list[s + 1] < list[s])
{
m_sortNum = list[s + 1];
list[s + 1] = list[s];
list[s] = m_sortNum;
}
}
}
return list;
}
InsertSort c#
最新推荐文章于 2024-11-03 22:21:51 发布