亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++數據結構之雙向鏈表怎么實現

發布時間:2022-05-27 09:12:43 來源:億速云 閱讀:157 作者:iii 欄目:開發技術

這篇“C++數據結構之雙向鏈表怎么實現”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“C++數據結構之雙向鏈表怎么實現”文章吧。

C++數據結構之雙向鏈表怎么實現

#include <iostream>
using std::cout;
using std::endl;
struct Node
{
    int data;
    struct Node * next;
    struct Node * pre;
};

一、創建雙向鏈表

Node * createList()
{
    Node * head = new Node;
    if (NULL == head)
        exit(-1);
    head->next = head;
    head->pre = head;
    return head;
}

二、插入元素(頭插法)

讓新來的節點先有所指

C++數據結構之雙向鏈表怎么實現

void insertList(Node * head,int n)
{
    Node * cur = new Node;
    if (NULL == cur)
        exit(-1);
    cur->next = head->next;
    cur->pre = head;
    head->next = cur;
    cur->next->pre = cur;
    
    cur->data = n;
}

三、鏈表長度

int lenList(Node * head)
{
    int i = 0;
    Node * t = head->next;
    while (t != head)
    {
        i++;
        t = t->next;
    }
    return i;
}

四、查找遍歷

C++數據結構之雙向鏈表怎么實現

Node * findList(Node * head,int fn)
{
    Node * forward = head->next;
    Node * back = head->pre;
    while (forward != back->next)
    {
        if (forward->data == fn)
            return forward;
        if (back->data == fn)
            return back;
        if (forward == back)
            break;
        forward = forward->next;
        back = back->pre;
    }
    return NULL;
}

五、刪除其中元素

void deleteList(Node * pFind)
{
    pFind->pre->next = pFind->next;
    pFind->next->pre = pFind->pre;
    delete pFind;
}

六、排序

(類似于先刪除 再插入)

C++數據結構之雙向鏈表怎么實現

void sortDlist(Node * head)
{
    int len = lenList(head);
    Node *prep = NULL;
    Node *p = NULL;
    Node *q = NULL;
    Node *t = NULL;
    for (int i = 0;i < len - 1;i++)
    {
        p = head->next;
        q = p->next;
        for (int j = 0;j < len - 1 - i;j++)
        {
            if ((p->data)<(q->data))
            {
                p->pre->next = q;
                q->pre = p->pre;

                p->next = q->next;
                p->pre = q;

                q->next = p;
                p->next->pre = p;

                t = p;
                p = q;
                q = t;
            }
            p = p->next;
            q = q->next;
        }
    }
}

七、銷毀鏈表

void desList(Node * head)
{
    head->pre->next = NULL;
    Node *t = NULL;
    while (head != NULL)
    {
        t = head;
        head = head->next;
        delete t;
    }
}

以上就是關于“C++數據結構之雙向鏈表怎么實現”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

溆浦县| 绥棱县| 辉南县| 成安县| 屏南县| 休宁县| 灵璧县| 柏乡县| 东兰县| 广宁县| 成安县| 乡城县| 黄龙县| 云南省| 漳州市| 柳河县| 边坝县| 鄂尔多斯市| 顺平县| 乾安县| 萝北县| 石阡县| 蒙自县| 夏邑县| 平安县| 札达县| 黄冈市| 明水县| 昭觉县| 广宁县| 铅山县| 西和县| 沐川县| 静乐县| 泸西县| 肇东市| 五家渠市| 辽中县| 手机| 许昌市| 虹口区|