标签:插入 int [] i++ key 插入排序 for ons pre
void InsertionSort(int arr[])
{
for(int i=1; i < arr.len(); i++)
{
int key = arr[i];
int j = i;
while(key < arr[j-1] && j > 0)
{
//move key to previous position
arr[j] = arr[j-1];
j--;
}
arr[j] = key;
PrintArray(arr);
}
}
标签:插入 int [] i++ key 插入排序 for ons pre
原文地址:http://www.cnblogs.com/P3nguin/p/7502030.html