我有堆棧,並且需要在指定元素之前插入節點,並且此代碼有效,但我需要的代碼不帶count和count1,因爲排序不起作用。你能幫我重新編寫代碼嗎?我試圖做的代碼什麼的,但它不工作在指定元素之前插入節點
void Stack::stackA(Item *q,Item *q1) // q - specified element, q1 - new element
{
int count=0;
int count1=0;
for (Item *i=this->first;i;i=i->next)
{
count++;
if (*i == *q) // Here we find position of the specified element
break;
}
for (Item *i=this->first;i;i=i->next)
{
Item *temp=new Item(*q1);
if(*this->first == *q) // if element first
{
this->first=temp;
temp->next=i;
break;
}
if (count1+1==count-1) //count-1,insert before specified element
{
if(i->next)
temp->next=i->next;
else
temp->next=0;
i->next=temp;
}
count1++;
}
}
爲什麼使用自定義單鏈表(這很容易出錯)而不是std :: stack? –