代碼代碼day1

Mar.23

題目

Write a program that concatenates two linked list objects of characters. The program should include function concatenate, which takes references to both list objects as arguments and concatenates the second list to the first list.

Sample Run

The list is: a b c d e

The list is: f g h i j

Concatenate the 2 lists means appending second list to first list

start the concatenation.

Create a copy of second list

...remove value from copied list: f

...insert at end of first list: f

...remove value from copied list: g

...insert at end of first list: g

...remove value from copied list: h

...insert at end of first list: h

...remove value from copied list: i

...insert at end of first list: i

...remove value from copied list: j

...insert at end of first list: j

Display the copied list.

The list is empty

end the concatenation.

Start the destructor

The list is empty ...

End the destructor.

The first list after concatenation is:

The list is: a b c d e f g h i j

Start the destructor

Destroying nodes ...

f

g

h

i

j

All nodes destroyed

End the destructor.

Start the destructor

Destroying nodes ...

a

b

c

d

e

f

g

h

i

j

All nodes destroyed

End the destructor.

寫(xiě)代碼

/*******************************************************************

* CIS22B Exercise 17.1

* Author :?

* Description: This program concatenates two list objects of characters.

*? ? ? ? ? ? ? linklistc concatenate (linklistc, linklistc)

* Date : Mar.19, 2018

*******************************************************************/

#include<iostream>

#include<string>

using namespace std;

// Specification file for the CharList class

#ifndef CHARLIST_H

#define CHARLIST_H

class CharList{

private:

// Declare a structure for the list

? ? struct ListNode

? ? {

char value;? // The value in this node

? ? ? ? struct ListNode *next;? // To point to the next node

? ? };

? ? ListNode *head;

public:

// Constructor

? ? CharList()

{

head =nullptr;

? ? }

//Destructor

? ? ~CharList();

? ? //Linked list operations

? ? void appendNode(char);

? ? void concatenate(CharList &);

? ? void showList();

? ? bool isEmpty();

};

#endif

void CharList::appendNode(char c) {

ListNode *newNode; // To point to a new node, must be a pointer

? ? ListNode *nodePtr; // To move through the list

// Allocate a new node and store char there

? ? newNode =new ListNode;

? ? newNode ->value = c;

? ? newNode ->next =nullptr;

? ? //If there are no nodes in the list

//make newNode the first node.

? ? if(!head)

head = newNode;

? ? else // Otherwise, insert new node at end.

? ? {

// Initialize nodeptr to head of list.

? ? ? ? nodePtr =head;

? ? ? ? //Find the last node in the list.

? ? ? ? while (nodePtr->next)

nodePtr = nodePtr->next;

? ? ? ? // Insert newNode as the last node.

? ? ? ? nodePtr ->next = newNode;

? ? }

}

void CharList::showList(){

ListNode *nodeptr;

? ? if(!head)

return;

? ? else{

nodeptr =head;

? ? ? ? while(nodeptr){

cout<< nodeptr->value << " ";

? ? ? ? ? ? nodeptr = nodeptr ->next;

? ? ? ? }

}

}

bool CharList::isEmpty() {

if(!head)

return true;

? ? else

? ? ? ? return false;

}

void CharList::concatenate(CharList &l2){

ListNode *firstNode2;? // For tranverse L2

? ? ListNode *lastNode1; // For tranverse list

// ListNode *tempNode; // For get the oringin list l2;

//tempNode = l2.head;

// Find the end of list l1(this list)

? ? if(head)

{

lastNode1 =head;

? ? ? ? while(lastNode1->next)

{

lastNode1 = lastNode1->next;

? ? ? ? }

}

else

? ? {

lastNode1 =head;

? ? }

// Find the first node of l2

? ? while(l2.head !=nullptr)

{

//Remove the first

? ? ? ? firstNode2 = l2.head;

? ? ? ? //firstNode2->next = nullptr;

? ? ? ? cout<< "...remove value from copied list: " << firstNode2->value <

? ? ? ? lastNode1->next = firstNode2;

? ? ? ? lastNode1 = firstNode2;

? ? ? ? cout<<"...insert at end of first list: " << firstNode2->value << endl;

? ? ? ? l2.head = l2.head->next;

? ? }

//cout << "\ntemp:" << tempNode->value<

}

// Destructor

// This function deletes every node in the list.

CharList:: ~CharList() {

ListNode * nodePtr; // To traverse the list

? ? ListNode * nextNode; // To point to the next node

// Position nodePtr at the head of the list.

? ? nodePtr =head;

? ? // While nodePtr is not at the end of the list...

? ? while (nodePtr !=nullptr)

{

//Save a pointer to the next node.

? ? ? ? nextNode = nodePtr->next;

? ? ? ? // Delete the current node.

? ? ? ? delete nodePtr;

? ? ? ? // Position nodePtr at the next node.

? ? ? ? nodePtr = nextNode;

? ? }

}

int main(){

// Create Char

? ? CharList l1, l2;

? ? l1.appendNode('a');

? ? l1.appendNode('b');

? ? l1.appendNode('c');

? ? l1.appendNode('d');

? ? l1.appendNode('e');

? ? cout<< "The list is: " ;

? ? l1.showList();

? ? l2.appendNode('f');

? ? l2.appendNode('g');

? ? l2.appendNode('h');

? ? l2.appendNode('i');

? ? l2.appendNode('j');

? ? cout<< "\nThe list is: ";

? ? l2.showList();

? ? cout<< endl;

? ? l1.concatenate(l2);

? ? cout<< "\nDisplay the copied list.\n";

? ? l2.showList();

? ? if(l2.isEmpty())

{

cout<< "The list is empty." << endl;

? ? ? ? cout<< "\nend the concatenation." <

? ? }

else

? ? ? ? cout<< "The list is not empty, there must be sonthing wrong." <

? ? cout<< "Start the destructor"<

? ? cout<< "Destroying nodes... "<

? ? l1.~CharList();

}




output


?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市亡脸,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖瞪慧,帶你破解...
    沈念sama閱讀 212,816評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異部念,居然都是意外死亡弃酌,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén)儡炼,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)妓湘,“玉大人,你說(shuō)我怎么就攤上這事乌询“裉” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 158,300評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵妹田,是天一觀(guān)的道長(zhǎng)唬党。 經(jīng)常有香客問(wèn)我,道長(zhǎng)鬼佣,這世上最難降的妖魔是什么驶拱? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,780評(píng)論 1 285
  • 正文 為了忘掉前任,我火速辦了婚禮晶衷,結(jié)果婚禮上蓝纲,老公的妹妹穿的比我還像新娘。我一直安慰自己晌纫,他們只是感情好税迷,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,890評(píng)論 6 385
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著锹漱,像睡著了一般箭养。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上凌蔬,一...
    開(kāi)封第一講書(shū)人閱讀 50,084評(píng)論 1 291
  • 那天,我揣著相機(jī)與錄音闯冷,去河邊找鬼砂心。 笑死,一個(gè)胖子當(dāng)著我的面吹牛蛇耀,可吹牛的內(nèi)容都是我干的辩诞。 我是一名探鬼主播,決...
    沈念sama閱讀 39,151評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼纺涤,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼译暂!你這毒婦竟也來(lái)了抠忘?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,912評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤外永,失蹤者是張志新(化名)和其女友劉穎崎脉,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體伯顶,經(jīng)...
    沈念sama閱讀 44,355評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡囚灼,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,666評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了祭衩。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片灶体。...
    茶點(diǎn)故事閱讀 38,809評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖掐暮,靈堂內(nèi)的尸體忽然破棺而出蝎抽,到底是詐尸還是另有隱情,我是刑警寧澤路克,帶...
    沈念sama閱讀 34,504評(píng)論 4 334
  • 正文 年R本政府宣布樟结,位于F島的核電站,受9級(jí)特大地震影響衷戈,放射性物質(zhì)發(fā)生泄漏狭吼。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,150評(píng)論 3 317
  • 文/蒙蒙 一殖妇、第九天 我趴在偏房一處隱蔽的房頂上張望刁笙。 院中可真熱鬧,春花似錦谦趣、人聲如沸疲吸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)摘悴。三九已至,卻和暖如春舰绘,著一層夾襖步出監(jiān)牢的瞬間蹂喻,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,121評(píng)論 1 267
  • 我被黑心中介騙來(lái)泰國(guó)打工捂寿, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留口四,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,628評(píng)論 2 362
  • 正文 我出身青樓秦陋,卻偏偏與公主長(zhǎng)得像蔓彩,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,724評(píng)論 2 351

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