1. 程式人生 > >C實現頭插法和尾插法來構建單鏈表(帶頭結點)

C實現頭插法和尾插法來構建單鏈表(帶頭結點)

核心程式碼如下:

//建立帶頭結點的單鏈表(尾插法)
void CreateListTailInsert(Node *pNode){

    /**
     *  就算一開始輸入的數字小於等於0,帶頭結點的單鏈表都是會建立成功的,只是這個單鏈表為空而已,也就是裡面除了頭結點就沒有其他節點了。
     */
    Node *pInsert;
    Node *pMove;
    pInsert = (Node *)malloc(sizeof(Node));//需要檢測分配記憶體是否成功 pInsert == NULL  ?
    memset(pInsert, 0, sizeof(Node));
    pInsert->next = NULL;

    scanf("%d",&(pInsert->element));
    pMove = pNode;
    while (pInsert->element > 0) {

        pMove->next = pInsert;
        pMove = pInsert;//pMove始終指向最後一個節點

        pInsert = (Node *)malloc(sizeof(Node)); //需要檢測分配記憶體是否成功 pInsert == NULL  ?
        memset(pInsert, 0, sizeof(Node));
        pInsert->next = NULL;

        scanf("%d",&(pInsert->element));
    }

    printf("%s函式執行,帶頭結點的單鏈表使用尾插法建立成功\n",__FUNCTION__);
}

//建立帶頭結點的單鏈表(頭插法)
void CreateListHeadInsert(Node *pNode){

    Node *pInsert;
    pInsert = (Node *)malloc(sizeof(Node));
    memset(pInsert, 0, sizeof(Node));
    pInsert->next = NULL;

    scanf("%d",&(pInsert->element));
    while (pInsert->element > 0) {
        pInsert->next = pNode->next;
        pNode->next = pInsert;

        pInsert = (Node *)malloc(sizeof(Node));
        memset(pInsert, 0, sizeof(Node));
        pInsert->next = NULL;

        scanf("%d",&(pInsert->element));
    }

    printf("%s函式執行,帶頭結點的單鏈表使用頭插法建立成功\n",__FUNCTION__);
}