打印通函链表

时间:2018-09-01 06:44:28

标签: c++ data-structures linked-list queue circular-list

#include <iostream>
#include <cstdlib>

using namespace std;

struct node
{
    int data;
    struct node* link;
};

struct node* front;
struct node* rear;

void insert()
{
    struct node*temp;
    temp = (struct node*)malloc(sizeof(struct node));
    cin >> temp->data;
    if (front == NULL)
    {
        front = rear = temp;
    }
    else
    {
        rear->link = temp;
        rear = rear->link;
    }
    rear->link = front;
}


void del()
{
    struct node* temp;
    temp = front;
    if (front == NULL)
        cout << "Underflow";
    else
    {
        front = front->link;
        free(temp);
    }
    rear->link = front;
}

void disp()
{
    struct node* temp;
    temp = front;
    if (front == NULL)
        cout << "Empty";
    else
    {
        do
        {
            cout << temp->data << "->";
            temp = temp->link;
        } while (temp != front);

    }
    rear->link = front;
}
int main()
{
    int n;
    bool run = true;
    while (run)
    {
        cin >> n;
        switch (n)
        {
        case 1:
            insert();
            break;
        case 2:
            del();
            break;
        case 3:
            disp();
            break;
        case 4:
            run = false;
            break;
        }
    }
    return 0;
}

我是这个概念的新手。我编写了一个代码,用于使用队列实现链表的概念来插入删除和显示元素。程序运行正常,没有任何错误。但是当显示输出时。我需要显示输出以及插入的第一个元素。例如:我的输入是 1个 2 1个 3 1个 4 3 输出为2-> 3-> 4->

但是我需要的输出是2-> 3-> 4-> 2-> 我想在最后一次再次看到第一个元素

2 个答案:

答案 0 :(得分:0)

足够简单,更改此

do
{
    cout<<temp->data<<"->";
    temp=temp->link;
}
while(temp!=front);

对此

int first = temp->data;
do
{
    cout<<temp->data<<"->";
    temp=temp->link;
}
while(temp!=front);
cout<<first<<"->"; // print first element again

答案 1 :(得分:0)

您所要做的只是在do-while循环之后添加一行,如下所示:

do
{
    cout << temp->data << "->";
    temp = temp->link;
} while (temp != front);
cout<< front->data << "->";

假设front是您的链表的head。现在我有一个问题要问,如果只有一个条目,您将怎么办?因为它将要显示两次。