寒假專案1-動態連結串列體驗(改造)(3)

不被看好的青春叫成長發表於2015-01-21
/* 
* Copyright (c) 2014, 煙臺大學計算機學院 
* All rights reserved. 
* 檔名稱:test.cpp 
* 作    者:劉暢 
* 完成日期:2015 年 1  月  21  日 
* 版 本 號:v1.0 
* 
* 問題描述:改造博文示例中的連結串列。  
* 輸入描述:輸入n(n為結點資料)。
* 程式輸出:輸出動態連結串列


(3)編寫函式delete_first_node(),刪除連結串列中的第一個結點。

#include <iostream>
#include <cstdio>
using namespace std;
struct Node
{
    int data;                   //結點的資料
    struct Node *next;          //指向下一個結點
};
Node *head=NULL;                //將連結串列頭定義為全域性變數,以便後續操作
void make_list2();              //建立連結串列
void out_list();                //輸出連結串列
void delete_first_node();        //刪除首結點
int main()
{
    make_list2();
    out_list();
    delete_first_node();
    out_list();
    return 0;
}

void make_list2()
{
    int n;
    Node *p,*q;                   //p用於指向新建立的結點, q指向連結串列尾部
    cout<<"輸入若干正數(以0或一個負數結束)建立連結串列:"<<endl;
    cin>>n;
    while(n>0)
    {
        p=new Node;               //建立一個新結點
        p->data=n;                //將n放入新結點的資料成員中
        p->next=NULL;             //將指標P指向的next置空
        if(head==NULL)
            head=p;
        else
            q->next=p;
        q=p;                      //將p鏈入表尾
        cin>>n;
    }
    return;
}

void out_list()
{
    Node *p=head;
    cout<<"連結串列中的資料為:"<<endl;
    while (p!=NULL)
    {
        cout<<p->data<<" ";
        p=p->next;
    }
    cout<<endl;
    return;
}

void delete_first_node()
{
    Node *p=head;
    if (p!=NULL)
    {
        head=p->next;
        delete p;
        cout<<"首結點已刪除。。。"<<endl;
    }
    else
        cout<<"空連結串列,無法刪除。。。"<<endl;
}

執行結果:

 



相關文章