C語言實現雙向非迴圈鏈表(不帶頭結點)的節點插入

來源:互聯網
上載者:User

       我在之前一篇部落格中《C語言實現雙向非迴圈鏈表的逆序列印》講到了如何逆序輸出一個雙向非迴圈鏈表,讓我們對這種鏈表類型有了理性的認識。今天我們要來實現的是對雙向非迴圈鏈表進行節點的插入。大家可以和《C語言實現單鏈表節點的插入》單鏈表的節點插入對比著學習。代碼上傳至  https://github.com/chenyufeng1991/InsertDoubleLinkedList 。

核心代碼如下:

Node *InsertList(Node *pNode,int pos,int x){    int i = 1;    int size = sizeList(pNode);    Node *pMove;    Node *pInsert;    pInsert = (Node *)malloc(sizeof(Node));    memset(pInsert, 0, sizeof(Node));    pInsert->element = x;    pInsert->next = NULL;    pInsert->prior = NULL;    pMove = pNode;    //首先檢查pos值是否合法    if (pos < 0 || pos > size) {        printf("%s函數執行,輸入的pos值非法,插入節點失敗\n",__FUNCTION__);        return pNode;    }    //原鏈表是一個空鏈表,在第一個位置插入節點    if (pNode == NULL && pos == 0) {        pNode = pInsert;        printf("%s函數執行,在pos=%d位置插入x=%d節點成功\n",__FUNCTION__,pos,x);        return pNode;    }    //單獨考慮插入到第一個節點和最後一個節點    if (pos == 0) {        //插入的節點作為第一個節點        pInsert->next = pNode;        pNode->prior = pInsert;        pNode = pInsert;    }else if(pos == size){        //插入的節點是最後一個節點        while (pMove->next != NULL) {            pMove = pMove->next;        }        pMove->next = pInsert;        pInsert->prior = pMove;    }else{        while (pMove != NULL) {            if (i == pos) {                //找到該位置,請注意下面的鏈表的連結順序很重要                pInsert->next = pMove->next;                pMove->next->prior = pInsert;                pInsert->prior = pMove;                pMove->next = pInsert;                break;            }else{                //繼續找下一個節點                i++;                pMove = pMove->next;            }        }    }    printf("%s函數執行,在pos=%d位置插入x=%d節點成功\n",__FUNCTION__,pos,x);    return pNode;}


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.