void insert(struct EMP* emp[])
{
struct EMP* previous = NULL;
struct EMP* current = top;
int i;
int j;
previous = current;
current = current -> next;
for(i = 1; i < numEmps; i++)
{
j = i;
while(j > 0 && previous -> id > current -> id)
{
previous = current;
j--;
}
current = current -> next;
}
}
所以,参数是一个无序数组,我想使用插入排序对其进行排序。我遇到的问题是它需要链接列表。有什么建议么?以上是我现有的不起作用的插入排序功能。