0
解決數據結構手冊中的問題我買了並且無法讓我的分類鏈接列表編譯。排序功能是我遇到麻煩的地方。目標是隻輸入一個數字,將該數字添加到排序位置的列表中,打印列表。我只是試圖用非常基本的比較操作符進行排序,但我無法實現它的功能。 任何意見或指導將不勝感激。簡單分類的鏈接列表問題
問題下面的代碼:
class Node
{
public:
Node* next;
int data;
};
class LinkedList
{
public:
Node* head;
LinkedList();
~LinkedList();
void add(int data);
void print();
void sorting();
};
void LinkedList::sorting()
{
Node* head = this->head;
Node* node = new Node();
for (Node* current = head; current != nullptr; current = current->next)
{
if (head->data > head->next->data)
{
node = head;
head = head->next;
head->next = node;
}
head=head->next;
}
}
您的源代碼是否包含'print()'和'add()'方法的方法體? –
@the_storyteller是的,但是這些方法/功能是完美的。這部分代碼是唯一有問題的代碼。 – Stubbsy
你在'for'循環中似乎沒有使用'current'? – GWW