我正在开发一个程序,使用基数排序对数字列表进行排序,但我仍然陷入无限循环的困境。我认为这是我的主要排序功能或我的计数功能。关于我做错了什么想法?
void radix_sort(DLList& list)
{
DLList lstRay[10];
int ct = count(list);
int zeros = 0;
int tmp = 0;
int head = 0;
for(;ct >= 0; ct--)
{
while(!list.isEmpty())
{
head = list.deleteHead();
tmp = head / pow(10, zeros);
tmp = tmp % 10;
lstRay[tmp].addToTail(head);
}
for(int x = 0; x <=9; x++)
{
list.append(lstRay[x]);
}
zeros++;
}
}
int count(DLList& list)
{
int ct = 0;
int ct2 = 0;
int tmp = 0;
while(!list.isEmpty())
{
ct = ct2;
tmp = list.deleteHead();
while(tmp >= 0)
{
tmp = tmp/10;
ct2++;
}
if(ct2 < ct)
{
ct2 = ct;
}
}
return ct2;
}
答案 0 :(得分:0)
您不会在每次迭代时清除lstRay
。这意味着当您再次循环时,每个lstRay
都会变得越来越长,因此您的列表会呈指数级增长。
然而,我很惊讶它已经走得那么远 - 看起来你的计数功能将清除列表。
答案 1 :(得分:0)
无限循环在count()内。 temp上的循环永远不会终止,因为temp永远不会低于零。
radix_sort函数也存在问题。 listRay [tmp]未初始化。