最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

C/C++編程筆記:鏈接列表(鏈表)丨插入節(jié)點(diǎn)的三種方法

2020-12-10 22:08 作者:C語言編程__Plus  | 我要投稿

在上一篇文章中,我們介紹了鏈接列表。我們還創(chuàng)建了一個(gè)具有3個(gè)節(jié)點(diǎn)的簡(jiǎn)單鏈表,并討論了鏈表遍歷。

本文討論的所有程序均考慮以下鏈表的表示形式。?

C ++


C


在這篇文章中,討論了在鏈表中插入新節(jié)點(diǎn)的方法??梢酝ㄟ^三種方式添加節(jié)點(diǎn):?

1)在鏈表的最前面?

2)在給定節(jié)點(diǎn)之后。?

3)在鏈接列表的末尾。

在前面添加一個(gè)節(jié)點(diǎn):(4個(gè)步驟)

將新節(jié)點(diǎn)始終添加到給定鏈接列表的開頭之前。新添加的節(jié)點(diǎn)成為鏈接列表的新頭。例如,如果給定的鏈接列表為10-> 15-> 20-> 25,并且我們?cè)谇懊嫣砑恿隧?xiàng)目5,則鏈接列表將變?yōu)?-> 10-> 15-> 20-> 25。讓我們將添加到列表最前面的函數(shù)稱為push()。push()必須接受一個(gè)指向頭指針,因?yàn)楸仨毻祁^指針改為指向新的節(jié)點(diǎn)。


以下是在最前面添加節(jié)點(diǎn)的4個(gè)步驟。

C++


C


push()的時(shí)間復(fù)雜度為O(1),因?yàn)樗龅墓ぷ髁渴呛愣ǖ摹?/p>

在給定節(jié)點(diǎn)之后添加一個(gè)節(jié)點(diǎn):(5個(gè)步驟)?

給我們一個(gè)指向節(jié)點(diǎn)的指針,并將新節(jié)點(diǎn)插入到給定節(jié)點(diǎn)之后。


C ++


C


insertAfter()的時(shí)間復(fù)雜度為O(1),因?yàn)樗墓ぷ髁渴呛愣ǖ摹?/p>

在最后添加一個(gè)節(jié)點(diǎn):(6個(gè)步驟)?

將新節(jié)點(diǎn)始終添加到給定鏈接列表的最后一個(gè)節(jié)點(diǎn)之后。例如,如果給定的鏈接列表為5-> 10-> 15-> 20-> 25,并且我們?cè)谀┪蔡砑恿隧?xiàng)目30,則鏈接列表將變?yōu)?-> 10-> 15-> 20-> 25- > 30。?

由于鏈接列表通常由其頭部表示,因此我們必須遍歷該列表直至結(jié)束,然后將最后一個(gè)節(jié)點(diǎn)的下一個(gè)更改為新節(jié)點(diǎn)。


以下是最后添加節(jié)點(diǎn)的6個(gè)步驟。


C


append的時(shí)間復(fù)雜度為O(n),其中n是鏈表中節(jié)點(diǎn)的數(shù)量。由于從頭到尾都有一個(gè)循環(huán),因此該函數(shù)可以執(zhí)行O(n)。?

還可以通過保留指向鏈表尾部的額外指針,將該方法優(yōu)化為在O(1)中工作。

以下是使用上述所有方法創(chuàng)建鏈表的完整程序。

C ++

#include <bits/stdc++.h>

usingnamespacestd;

classNode?

{?

????public:

????intdata;?

????Node *next;?

};?

voidpush(Node** head_ref, intnew_data)?

{?

????Node* new_node = newNode();

????new_node->data = new_data;?

????new_node->next = (*head_ref);?

????(*head_ref) = new_node;?

}?

voidinsertAfter(Node* prev_node, intnew_data)?

{?

????if(prev_node == NULL)?

????{?

????????cout<<"the given previous node cannot be NULL";?

????????return;?

????}?

????Node* new_node = newNode();

????new_node->data = new_data;?

????new_node->next = prev_node->next;?

????prev_node->next = new_node;?

}?

voidappend(Node** head_ref, intnew_data)?

{?

????Node* new_node = newNode();

????Node *last = *head_ref; /* used in step 5*/

????new_node->data = new_data;?

????new_node->next = NULL;?

????then make the new node as head */

????if(*head_ref == NULL)?

????{?

????????*head_ref = new_node;?

????????return;?

????}?

????while(last->next != NULL)?

????????last = last->next;?

????last->next = new_node;?

????return;?

}?

voidprintList(Node *node)?

{?

????while(node != NULL)?

????{?

????????cout<<" "<<node->data;?

????????node = node->next;?

????}?

}?

int main()?

{?


????Node* head = NULL;?

????append(&head, 6);?

????push(&head, 7);?

????push(&head, 1);?

????append(&head, 4);?

????insertAfter(head->next, 8);?

????cout<<"Created Linked list is: ";?

????printList(head);?

????return 0;?

}

C語言

#include <stdio.h>

#include <stdlib.h>

structNode

{

??intdata;

??structNode *next;

};

voidpush(structNode** head_ref, intnew_data)

{

????structNode* new_node = (structNode*) malloc(sizeof(structNode));

????new_node->data? = new_data;

????new_node->next = (*head_ref);

????(*head_ref)??? = new_node;

}

voidinsertAfter(structNode* prev_node, intnew_data)

{

????/*1. check if the given prev_node is NULL */

????if(prev_node == NULL)

????{

??????printf("the given previous node cannot be NULL");

??????return;

????}

????structNode* new_node =(structNode*) malloc(sizeof(structNode));

????new_node->data? = new_data;

????new_node->next = prev_node->next;

????prev_node->next = new_node;

}

voidappend(structNode** head_ref, intnew_data)

{

????structNode* new_node = (structNode*) malloc(sizeof(structNode));

????structNode *last = *head_ref;? /* used in step 5*/

????new_node->data? = new_data;

??????????it as NULL*/

????new_node->next = NULL;

????if(*head_ref == NULL)

????{

???????*head_ref = new_node;

???????return;

????}

????while(last->next != NULL)

????????last = last->next;

????last->next = new_node;

????return;

}

voidprintList(structNode *node)

{

??while(node != NULL)

??{

?????printf(" %d ", node->data);

?????node = node->next;

??}

}

intmain()

{

??structNode* head = NULL;

??append(&head, 6);

??push(&head, 7);

??push(&head, 1);

??append(&head, 4);

??insertAfter(head->next, 8);

??printf("\n Created Linked list is: ");

??printList(head);

??return0;

}

輸出:

創(chuàng)建的鏈接列表為:1 7 8 6 4

希望本篇文章對(duì)你有幫助~

另外如果你想更好的提升你的編程能力,學(xué)好C語言C++編程!彎道超車,快人一步!筆者這里或許可以幫到你~

UP在主頁(yè)上傳了一些學(xué)習(xí)C/C++編程的視頻教程,有興趣或者正在學(xué)習(xí)的小伙伴一定要去看一看哦!會(huì)對(duì)你有幫助的~

分享(源碼、項(xiàng)目實(shí)戰(zhàn)視頻、項(xiàng)目筆記,基礎(chǔ)入門教程)

歡迎轉(zhuǎn)行和學(xué)習(xí)編程的伙伴,利用更多的資料學(xué)習(xí)成長(zhǎng)比自己琢磨更快哦!

編程學(xué)習(xí)書籍分享:


編程學(xué)習(xí)視頻分享:



C/C++編程筆記:鏈接列表(鏈表)丨插入節(jié)點(diǎn)的三種方法的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
三穗县| 苍梧县| 明星| 通城县| 涿州市| 重庆市| 博罗县| 丹凤县| 唐山市| 玉溪市| 额敏县| 朝阳区| 泉州市| 崇阳县| 武宣县| 三穗县| 房产| 团风县| 连州市| 兴安县| 治县。| 南康市| 绥棱县| 长治市| 桂平市| 宜都市| 光山县| 浙江省| 漾濞| 余庆县| 潢川县| 泗阳县| 嘉义县| 新津县| 永新县| 焉耆| 荆州市| 西乌珠穆沁旗| 土默特左旗| 夹江县| 大竹县|