線性表--鏈表(C++)

Node.h

#ifndef NODE_H
#define NODE_H

class Node
{
public:
    int data;//數(shù)據(jù)域
    Node* next;//指針域 指向下一個(gè)節(jié)點(diǎn)
    void printNode();
};

#endif //NODE_F

Node.cpp

#include "Node.h"
#include <iostream>
using namespace std;

void Node::printNode()
{
    cout << data << endl;
}

LinkList.h

#ifndef LINKLIST_H
#define LINKLIST_H

#include "Node.h"
#include <iostream>
using namespace std;

//單向鏈表
//數(shù)據(jù)域 指針域(指向下一個(gè)節(jié)點(diǎn))

//循環(huán)鏈表

//雙向鏈表

//靜態(tài)鏈表

class List
{
public:
    List();//構(gòu)造函數(shù)
    ~List();
    void ClearList();
    bool ListEmpty();
    int ListLength();
    bool GetElem(int i, Node *pNode); //獲取指定的元素
    int LocateElem(Node *pNode); //獲取指定元素的位置
    bool PriorElem(Node *pCurrentNode, Node *pPreNode);//獲取元素的前驅(qū)
    bool NextElem(Node *pCurrentNode, Node *pNextNode);//獲取元素的后繼
    void ListTraverse(); //遍歷線性表
    bool ListInsert(int i, Node *pNode);//插入 任何位置插入
    bool ListDelete(int i, Node *pNode);//刪除
    bool ListInsertHead(Node *pNode); //頭插
    bool ListInsertTail(Node *pNode);//尾插

private:
    Node *m_pList;
    int m_iLength;
};

#endif //LINKLIST_H

LinkList.cpp

#include "LinkList.h"

List::List()
{
    m_pList = new Node;//new運(yùn)算符在堆中申請(qǐng)內(nèi)存
    m_pList->data = 0;
    m_pList->next = NULL;
    m_iLength = 0;
}

void List::ClearList()
{
    Node *currentNode = m_pList->next;
    while (currentNode != NULL)
    {
        Node *temp = currentNode->next;
        delete currentNode;
        currentNode = temp;
    }
    m_pList->next = NULL;
}

List::~List()
{
    ClearList();
    delete m_pList;
    m_pList = NULL;
}

bool List::ListEmpty()
{
    if (m_iLength == 0)
        return true;
    else
        return false;
}
int List::ListLength()
{
    return m_iLength;
}

bool List::ListInsertHead(Node *pNode)
{
    Node *temp=m_pList->next; //保留頭節(jié)點(diǎn)
    Node *newNode = new Node; //為傳入數(shù)據(jù)的存儲(chǔ)開辟空間
    if (newNode == NULL)
        return false;
    newNode->data = pNode->data;//賦值
    m_pList->next = newNode;
    newNode->next = temp;
    m_iLength ++;
    return true;
}

bool List::ListInsertTail(Node *pNode)
{
    Node *currentNode = m_pList;
    while (currentNode->next != NULL)//遍歷尾節(jié)點(diǎn)
    {
        currentNode = currentNode->next;
    }
    Node *newNode = new Node;
    if (newNode == NULL)
        return false;
    newNode->data = pNode->data;
    newNode->next = NULL;
    currentNode->next = newNode; //newNode更新為整個(gè)鏈表的尾節(jié)點(diǎn)
    m_iLength ++;
    return true;
}

bool List::ListInsert(int i, Node *pNode)
{
    if (i<0 || i>m_iLength)
        return false;
    Node *currentNode = m_pList;
    for (int k = 0; k < i; k++)  //找到要插入位置
    {
        currentNode = currentNode->next;
    }
    Node *newNode = new Node;
    if (newNode == NULL)
        return false;
    newNode->data = pNode->data;
    newNode->next = currentNode->next;
    currentNode->next = newNode; // 插入;
}

bool List::ListDelete(int i, Node *pNode)
{
    if (i<0 || i>=m_iLength)
        return false;
    Node* currentNode = m_pList;
    Node* currentNodeBefore = NULL;
    for (int k = 0; k <= i; k++)
    {
        currentNodeBefore = currentNode;
        currentNode = currentNode->next;
    }
    currentNodeBefore->next = currentNode->next;
    pNode->data = currentNode->data;
    delete currentNode;
    currentNode = NULL;
    m_iLength--;
    return true;
}

bool List::GetElem(int i, Node *pNode)
{
    if (i<0 || i >= m_iLength)
        return false;
    //找到第i個(gè)節(jié)點(diǎn)
    Node* currentNode = m_pList;
    Node* currentNodeBefore = NULL;
    for (int k = 0; k <= i; k++)
    {
        currentNodeBefore = currentNode;
        currentNode = currentNode->next;
    }
    pNode->data = currentNode->data;
    return true;
}

int List::LocateElem(Node *pNode)
{
    Node *currentNode = m_pList;
    int count = 0;
    while (currentNode->next != NULL)//遍歷尾節(jié)點(diǎn)
    {
        currentNode = currentNode->next;
        if (currentNode->data == pNode->data)
        {
            return count;
        }
        count++;
    }
    return -1;//沒找到與pNode相同的數(shù)據(jù)域
}

bool List::PriorElem(Node *pCurrentNode, Node *pPreNode)
{
    Node *currentNode = m_pList;
    Node *tempNode = NULL;
    while (currentNode->next != NULL)//遍歷尾節(jié)點(diǎn)
    {
        tempNode = currentNode;
        currentNode = currentNode->next;
        if (currentNode->data == pCurrentNode->data)
        {
            if (tempNode == m_pList)
            {
                return false;
            }
            pPreNode->data = tempNode->data;
            return true;
        }
    }
    return false;
}

bool List::NextElem(Node *pCurrentNode, Node *pNextNode)
{
    Node *currentNode = m_pList;
    while (currentNode->next != NULL)//遍歷尾節(jié)點(diǎn)
    {
        currentNode = currentNode->next;
        if (currentNode->data == pCurrentNode->data)
        {
            if (currentNode->next == NULL)
            {
                return false;
            }
            pNextNode->data = currentNode->next->data;
            return true;
        }
    }
}

void List::ListTraverse()
{
    Node *currentNode = m_pList;
    while (currentNode->next != NULL)
    {
        currentNode = currentNode->next;
        currentNode->printNode();
    }
}

test.cpp

#include "LinkList.h"
#include <stdlib.h>

int main()
{
    Node node1;  //調(diào)用默認(rèn)的構(gòu)造函數(shù)
    node1.data = 3;
    Node node2;  
    node2.data = 4;
    Node node3; 
    node3.data = 5;
    Node node4;  
    node4.data = 6;
    Node node5;
    node5.data = 7;
    Node temp;

    List *pList = new List();

    /*pList->ListInsertHead(&node1);  //測(cè)試頭插
    pList->ListInsertHead(&node2);
    pList->ListInsertHead(&node3);
    pList->ListInsertHead(&node4);*/  

    pList->ListInsertTail(&node1);    //測(cè)試尾插
    pList->ListInsertTail(&node2);
    pList->ListInsertTail(&node3);
    pList->ListInsertTail(&node4);

    //pList->ListInsert(0, &node5);      //測(cè)試任意位置插入
    //pList->ListDelete(0, &temp);   //測(cè)試刪除函數(shù) 刪除的值放在temp中
    //pList->GetElem(1, &temp); //測(cè)試獲取元素
    //pList->PriorElem(&node4, &temp);  //測(cè)試取元素前驅(qū)
    pList->NextElem(&node1, &temp);//測(cè)試取元素的后繼

    pList->ListTraverse();

    //cout <<"temp="<< temp.data << endl;  //測(cè)試刪除函數(shù) 刪除的值是放在temp中的
    //cout << "temp=" << temp.data << endl;  //測(cè)試獲取元素 獲取的元素是放在temp中
    //cout << "temp=" << temp.data << endl; //測(cè)試取元素前驅(qū) 獲取的前驅(qū)是放在temp中的
    cout << "temp=" << temp.data << endl; //測(cè)試取元素后繼 獲取的后繼是放在temp中的
    
    delete pList;
    pList = NULL;

    system("pause");
}

運(yùn)行結(jié)果:
LinkList.png
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市亿胸,隨后出現(xiàn)的幾起案子坯钦,更是在濱河造成了極大的恐慌,老刑警劉巖侈玄,帶你破解...
    沈念sama閱讀 211,884評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件葫笼,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡拗馒,警方通過查閱死者的電腦和手機(jī)路星,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,347評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來诱桂,“玉大人洋丐,你說我怎么就攤上這事』拥龋” “怎么了友绝?”我有些...
    開封第一講書人閱讀 157,435評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長肝劲。 經(jīng)常有香客問我迁客,道長郭宝,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,509評(píng)論 1 284
  • 正文 為了忘掉前任掷漱,我火速辦了婚禮粘室,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘卜范。我一直安慰自己衔统,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,611評(píng)論 6 386
  • 文/花漫 我一把揭開白布海雪。 她就那樣靜靜地躺著锦爵,像睡著了一般。 火紅的嫁衣襯著肌膚如雪奥裸。 梳的紋絲不亂的頭發(fā)上险掀,一...
    開封第一講書人閱讀 49,837評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音湾宙,去河邊找鬼樟氢。 笑死,一個(gè)胖子當(dāng)著我的面吹牛创倔,可吹牛的內(nèi)容都是我干的嗡害。 我是一名探鬼主播焚碌,決...
    沈念sama閱讀 38,987評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼畦攘,長吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了十电?” 一聲冷哼從身側(cè)響起知押,我...
    開封第一講書人閱讀 37,730評(píng)論 0 267
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎鹃骂,沒想到半個(gè)月后台盯,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,194評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡畏线,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,525評(píng)論 2 327
  • 正文 我和宋清朗相戀三年静盅,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片寝殴。...
    茶點(diǎn)故事閱讀 38,664評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡蒿叠,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出蚣常,到底是詐尸還是另有隱情市咽,我是刑警寧澤,帶...
    沈念sama閱讀 34,334評(píng)論 4 330
  • 正文 年R本政府宣布抵蚊,位于F島的核電站施绎,受9級(jí)特大地震影響溯革,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜谷醉,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,944評(píng)論 3 313
  • 文/蒙蒙 一致稀、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧孤紧,春花似錦豺裆、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,764評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至押蚤,卻和暖如春蔑歌,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背揽碘。 一陣腳步聲響...
    開封第一講書人閱讀 31,997評(píng)論 1 266
  • 我被黑心中介騙來泰國打工次屠, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人雳刺。 一個(gè)月前我還...
    沈念sama閱讀 46,389評(píng)論 2 360
  • 正文 我出身青樓劫灶,卻偏偏與公主長得像,于是被迫代替她去往敵國和親掖桦。 傳聞我的和親對(duì)象是個(gè)殘疾皇子本昏,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,554評(píng)論 2 349

推薦閱讀更多精彩內(nèi)容