版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、1、創(chuàng)建稀疏矩陣類,采用行主順序把稀疏矩陣映射到一維數(shù)組中,實現(xiàn)稀疏矩陣的轉(zhuǎn)置和兩個稀疏矩陣的加法操作。#include #include using namespace std; /三元組 struct Trituple int row, col; /非零元素的行號、列號 int val; /非零元素的值 ; /稀疏矩陣類聲明 class SparseMatrix public: SparseMatrix(int maxt = 100); /構(gòu)造函數(shù) SparseMatrix(); /析構(gòu)函數(shù) bool TransposeTo(SparseMatrix &); /轉(zhuǎn)置 void add(Sp
2、arseMatrix &,SparseMatrix &);/加運算void map();/采用行主順序把稀疏矩陣映射到一維數(shù)組中 bool Input(); /輸入稀疏矩陣 void Output();/輸出稀疏矩陣 Trituple *data; /存儲非零元素三元組的數(shù)組 int rows, cols, terms; /矩陣的行數(shù)、列數(shù)、非零元素個數(shù) int maxterms; /數(shù)組data的大小 ; /構(gòu)造函數(shù),分配maxt個三元組結(jié)點的順序空間,構(gòu)造一個空的稀疏矩陣三元組表。 SparseMatrix:SparseMatrix(int maxt) maxterms = maxt; d
3、ata = new Trituple maxterms; terms = rows = cols = 0; /析構(gòu)函數(shù),將三元組表結(jié)構(gòu)銷毀。 SparseMatrix:SparseMatrix() if (data != NULL) delete data; /輸出稀疏矩陣 ostream& operator (ostream & out, SparseMatrix & M) out rows= M.rows endl; out cols= M.cols endl; out terms= M.terms endl; for (int i = 0; i M.terms; i+) out data
4、 M.datai.row , M.datai.col = M.datai.val (istream & in, SparseMatrix & N) cout 輸入稀疏矩陣的行數(shù)、列數(shù)以及非零元素個數(shù) N.rows N.cols N.terms; if (N.terms N.maxterms) exit (1); cout terms= N.terms endl; for (int i = 0; i N.terms; i+) cout 輸入非零元素的行號、列號和元素值 i + 1 N.datai.row N.datai.col N.datai.val; return in; ; /轉(zhuǎn)置,將*th
5、is的轉(zhuǎn)置矩陣送入B bool SparseMatrix:TransposeTo(SparseMatrix &B) if(terms B.maxterms) return false; B.rows = cols; B.cols = rows; B.terms = terms; if (terms 0) int p = 0; for (int j = 1; j = cols; j+) for (int k = 0; k terms; k+) if (datak.col = j) B.datap.row = j; B.datap.col = datak.row; B.datap.val = da
6、tak.val; p+; return true; void SparseMatrix:add(SparseMatrix &A,SparseMatrix &B) if (A.rows!=B.rows | A.cols!=B.cols) cout矩陣不相容,不能相加!endl; else rows = A.rows; cols = A.cols; terms = 0; int a,b,e,k; a = b = e = 0; for(k=1;k=A.rows;k+) while(A.dataa.row = k & B.datab.row = k) /兩結(jié)點屬于同一行 if(A.dataa.col
7、B.datab.col) /A中下標(biāo)a的結(jié)點小于B中下標(biāo)為b的結(jié)點的列數(shù) datae.val=A.dataa.val; datae.row=A.dataa.row; datae.col=A.dataa.col; e+; a+; else if(A.dataa.col=B.datab.col) /兩結(jié)點屬于同一列 int temp = A.dataa.val+B.datab.val; if(temp = 0) /兩結(jié)點數(shù)值相加等于0 a+; b+; else /兩結(jié)點數(shù)值相加不等于0 datae.val = temp; datae.row = A.dataa.row; datae.col = A
8、.dataa.col; e+; a+; b+; else /A中下標(biāo)a的結(jié)點大于B中下標(biāo)為b的結(jié)點的列數(shù) datae.val = B.datab.val; datae.row=B.datab.row; datae.col=B.datab.col; e+; b+; while(A.dataa.row = k) /只有A中剩下行數(shù)為k的未處理結(jié)點 datae.val = A.dataa.val; datae.row = A.dataa.row; datae.col = A.dataa.col; e+; a+; while(B.datab.row = k) /只有B中剩下行數(shù)為k的未處理結(jié)點 dat
9、ae.val = B.datab.val; datae.row =B.datab.row; datae.col = B.datab.col; e+; b+; terms=e;cout和矩陣為:1); size-) int indexOfMax = 0; sorted = true; for(int i = 1;isize; i+) if (dataindexOfMax.row1); size-) int indexOfMax = 0; sorted = true; for(int i = 1;i datai.row) if (dataindexOfMax.col = datai.col) in
10、dexOfMax = i; else sorted = false; swap(dataindexOfMax,datasize-1); for (int i = 0;i terms;i+)cout datai.val ;cout n; bool SparseMatrix:Input() cout 輸入稀疏矩陣的行數(shù)、列數(shù)以及非零元素個數(shù) rows cols terms; if (terms maxterms) cout 非零元個數(shù)太多! endl; return false; if (terms = 0) return true; cout 按行序輸入 terms 個非零元素的三元組 endl
11、; for (int i = 0; i terms; i+) cout 輸入第 i + 1 個非零元素的行號、列號和元素值 datai.row datai.col datai.val; if (datai.row rows | datai.col cols) cout 矩陣輸入有誤! endl; return false; return true; /輸出稀疏矩陣 void SparseMatrix:Output() cout rows= rows endl; cout cols= cols endl; cout terms= terms endl; for (int i = 0; i ter
12、ms; i+) cout data datai.row , datai.col = datai.val endl; int main() SparseMatrix M,T,C,D; if (M.Input() cout 原始矩陣: endl; M.Output(); cout 采用行主順序把稀疏矩陣映射到一維數(shù)組中并輸出 endl;M.map(); cout 轉(zhuǎn)置矩陣: endl; if(M.TransposeTo(T) T.Output();cout輸入第二個矩陣endl; if (C.Input() cout 第二矩陣: endl; C.Output();D.add(M,C);cout 采
13、用行主順序把稀疏矩陣映射到一維數(shù)組中并輸出 endl;D.map(); system(pause); return 0; 2、使用散列表設(shè)計實現(xiàn)一個字典,假設(shè)關(guān)鍵字為整數(shù)且D為961,在字典中插入隨機產(chǎn)生的500個不同的整數(shù),實現(xiàn)字典的建立和搜索操作。分別使用線性開型尋址和鏈表散列解決溢出。#include#include#include#includeusing namespace std;templateclass HashTable public:HashTable(int divisor = 11);HashTable() delete ht;delete empty;HashTabl
14、e & Insert(const E& e);void Output(ostream& out) const;friend ostream &operator (ostream& out, const HashTable& ht)ht.Output(out);return out;private:int hSearch(const K& k) const;int D;/ hash function divisorE *ht;/ hash table arraybool *empty;/ 1D array;template class HashTable;templateHashTable:Ha
15、shTable(int divisor) D = divisor;ht = new ED;empty = new boolD;for (int i = 0; i D; i+)emptyi = true;templateint HashTable:hSearch(const K& k) const int i = k % D;int j = i;do if (emptyj | htj = k)return j;j = (j + 1) % D; while (j != i);return j;templateHashTable&HashTable:Insert(const E& e) K k =
16、e;int b = hSearch(k);if (emptyb) emptyb = false;htb = e;return *this;if (htb = k)cout輸入錯誤;cout沒有可用內(nèi)存;templatevoid HashTable:Output(ostream& out) const out 表是否滿:;bool isFull = true;for (int i = 0; i D; i+)if (!emptyi) isFull = false;break;if (isFull)out 否;elseout 是;out endl;out 散列余數(shù)(所存儲數(shù)值的余數(shù)), 所存儲數(shù)值e
17、ndl;for (int i = 0; i D; i+) out i ( (hti % D) ),thti t|;if (i + 1) % 3 = 0)out endl;if (D % 3 != 0)out endl;templateclass SortedChain;templateclass SortedChainNode friend class SortedChain ; private: E data; SortedChainNode *link;templateclass SortedChain public:SortedChain() first = 0;SortedChain(
18、);bool IsEmpty() const return first = 0;int Length() const;SortedChain&Delete(const K& k, E& e);SortedChain&Insert(const E& e);SortedChain&DistinctInsert(const E& e);void Output(ostream& out) const;friend ostream&operator (ostream& out, const SortedChain& sc)sc.Output(out);return out;private:SortedC
19、hainNode *first;template class SortedChainNode ;template class SortedChain ;templateSortedChain:SortedChain() SortedChainNode* p = first;SortedChainNode* tmp;while (p) tmp = p;p = p-link;delete tmp;templateSortedChain&SortedChain:Delete(const K& k, E& e) SortedChainNode *p = first, *tp = 0; / trail
20、p/ search for match with kfor (; p & p-datalink);/ verify matchif (p & p-data = k) / found a matche = p-data; / save data/ remove p from chainif (tp)tp-link = p-link;elsefirst = p-link; / p is first node.delete p;return *this;cout輸入錯誤; / no matchtemplateSortedChain&SortedChain:Insert(const E& e) Sor
21、tedChainNode* p;if (!first | first-data= e) p = new SortedChainNode();p-data = e;p-link = first;first = p; else p = first;while (p-link) if (p-link-datalink; else SortedChainNode* ncn = new SortedChainNode();ncn-data = e;ncn-link = p-link;p-link = ncn;break;if (!p-link) p-link = new SortedChainNode(
22、);p = p-link;p-link = 0;p-data = e;return *this;templateSortedChain&SortedChain:DistinctInsert(const E& e) SortedChainNode *p = first, *tp = 0; / trail p/ move tp so that e can be inserted after tpfor (; p & p-datalink);/ check if duplicateif (p & p-data = e)cout輸入錯誤;/ not duplicate, set up node for
23、 eSortedChainNode *q = new SortedChainNode;q-data = e;/ insert node just after tpq-link = p;if (tp)tp-link = q;elsefirst = q;return *this;templatevoid SortedChain:Output(ostream& out) constSortedChainNode *p = first;if (!first)out (Empty chain.);elsewhile(p)out datalink;out endl;templateclass ChainH
24、ashTable public:ChainHashTable(int divisor = 11) D = divisor;ht = new SortedChain D;ChainHashTable() delete ht;ChainHashTable&Insert(const E&e) hte % D.Insert(e);return *this;ChainHashTable&Delete(const K& k, E&e) htk % D.Delete(k, e);return *this;void Output(ostream& out) const; friend ostream& operator (ostream& out, const ChainHashTable& cht)cht.Output(out);return out;private:int D;/ divisorSortedChain * ht;/ array of chains;template class ChainHashTable ;templatevoid ChainHashTable:Output(ostream& out) const out 散列余數(shù), 數(shù)值 endl;for (int i = 0; i D; i+) out i ,thti;void dea
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- GB/T 44736-2024野生動物保護繁育象
- 2024年度山西省高校教師資格證之高等教育法規(guī)自我提分評估(附答案)
- 2024年度年福建省高校教師資格證之高等教育學(xué)綜合練習(xí)試卷B卷附答案
- 2024年堿錳電池項目投資申請報告代可行性研究報告
- 新條令.新亮點-內(nèi)務(wù)條令解讀
- 2024年度衛(wèi)生間工程承建協(xié)議
- 基建類和生產(chǎn)類標(biāo)準(zhǔn)差異條款
- 2024賓館租賃與管理協(xié)議
- 2024年產(chǎn)品銷售與購買具體協(xié)議
- 人教部編版二年級語文上冊第18課《劉胡蘭》精美課件
- 期中模擬試卷(1-4單元)(試題)-2024-2025學(xué)年五年級上冊數(shù)學(xué)人教版
- 人教版八年級上冊生物期中考試試卷
- 中西醫(yī)協(xié)同發(fā)展多學(xué)科診療制度
- 期中模擬練習(xí)(1-4單元)(試題)2024-2025學(xué)年二年級上冊數(shù)學(xué)蘇教版
- 2024年江蘇省淮安市中考英語試題卷(含答案解析)
- 《醫(yī)療機構(gòu)工作人員廉潔從業(yè)九項準(zhǔn)則》制定主題學(xué)習(xí)課件
- 《大學(xué)美育》 課件 22.模塊五 第二十二章 光影交織的攝影藝術(shù)之美
- 2024-2030年月子中心行業(yè)市場發(fā)展分析及發(fā)展趨勢與投資前景研究報告
- 2024-2025一年級上冊科學(xué)教科版1.5 《植物的變化》課件
- 2024語文新教材培訓(xùn)講座:初中語文教材修訂的變與不變
- 2024年學(xué)年八年級語文上冊 第6課《我的家》教案 新疆教育版
評論
0/150
提交評論