#include#include#include#include#include//順序表定義#defi">
集合 的交和差的運算與實現(xiàn).doc

集合 的交和差的運算與實現(xiàn).doc

ID:55717436

大小:26.00 KB

頁數(shù):7頁

時間:2020-05-26

集合 的交和差的運算與實現(xiàn).doc_第1頁
集合 的交和差的運算與實現(xiàn).doc_第2頁
集合 的交和差的運算與實現(xiàn).doc_第3頁
集合 的交和差的運算與實現(xiàn).doc_第4頁
集合 的交和差的運算與實現(xiàn).doc_第5頁
資源描述:

《集合 的交和差的運算與實現(xiàn).doc》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫

1、#include#include#include#include#include#include//順序表定義#defineTRUE1#defineFALSE0#defineOK1#defineERROR0#defineOVERFLOW-2#defineIN_THIS_LIST1#defineNOT_IN_THIS_LIST0//宏定義typedefcharElemtype;typedef

2、intStatus;typedefstructList{Elemtypedata;structList*next;}LNode,*LinkList;//結(jié)構(gòu)體定義StatusInitList(LinkList&L){L=(LinkList)malloc(sizeof(LNode));if(!L)exit(OVERFLOW);L->data=NULL;L->next=NULL;returnOK;}//構(gòu)造表頭StatusPrintList(LinkListL){LinkListPrintList=L->nex

3、t;if(!L->next){cout<<"該集合為空!"<next){cout<data<<",";PrintList=PrintList->next;}cout<data;cout<

4、

5、(int)e>122)returnERROR;Lin

6、kListcompare=(LinkList)malloc(sizeof(LNode));LinkListinsertdata=(LinkList)malloc(sizeof(LNode));compare=L;while(compare->next){if(e==compare->next->data)returnTRUE;elseif(e<(compare->next->data)){insertdata->next=compare->next;insertdata->data=e;compare->n

7、ext=insertdata;returnOK;}compare=compare->next;}insertdata->data=e;compare->next=insertdata;insertdata->next=NULL;returnOK;}//向表中增加元素StatusDeleteList_data(LinkList&L,Elemtypee){LinkListDeletedata=L->next;while(Deletedata->next){if(!(Deletedata->next->next)

8、&&(Deletedata->next->data==e)){Deletedata->next=NULL;returnOK;}if(Deletedata->next->data==e){Deletedata->next=Deletedata->next->next;returnOK;}Deletedata=Deletedata->next;}Deletedata=L->next;if(Deletedata->data==e){L->next=Deletedata->next;returnOK;}return

9、ERROR;}Statusjiaoji(LinkListLa,LinkListLb,LinkList&L){LinkListPa=La->next;LinkListPb=Lb->next;while(Pa){while(Pb){if(Pb->data==Pa->data)InsertList(L,Pa->data);Pb=Pb->next;}Pb=Lb->next;Pa=Pa->next;}returnOK;}//求交集函數(shù)Statuschaji(LinkListLa,LinkListLb,LinkList

10、&L){Statuscompare=0;LinkListPa,Pb;Pa=La->next;Pb=Lb->next;while(Pa){while(Pb){if(Pa->data==Pb->data)compare++;Pb=Pb->next;}if(!compare)InsertList(L,Pa->data);compare=0;Pb=Lb->next;Pa=Pa->next;}returnOK;}//差集函

當前文檔最多預覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當前文檔最多預覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學公式或PPT動畫的文件,查看預覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負責整理代發(fā)布。如果您對本文檔版權(quán)有爭議請及時聯(lián)系客服。
3. 下載前請仔細閱讀文檔內(nèi)容,確認文檔內(nèi)容符合您的需求后進行下載,若出現(xiàn)內(nèi)容與標題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡波動等原因無法下載或下載錯誤,付費完成后未能成功下載的用戶請聯(lián)系客服處理。