1
您好,我有一個家庭作業,需要將兩個矩陣.txt文件讀入兩個鏈接列表(存儲列,行和值),然後將兩個列表一起添加並打印出總結矩陣。在兩個鏈接列表中總結特定值的問題
將矩陣讀取到鏈接列表可以正常工作,並將這些列表作爲矩陣進行打印。不過,我堅持如何將這兩個列表添加在一起。理想情況下,如果在將一個列表與另一個列表進行比較時列值和行值相同,則應該將該值相加。如果它們不相同,那麼它應該只打印該值。我想創建一個新的列表大小的組合列表,然後比較元素和添加所有其他人的方式去,但我似乎無法讓它超過節點推進。
在此先感謝您的幫助。
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <fstream>
#include <sstream>
using namespace std;
struct Node {
int row;
int column;
int value;
Node *next;
};
Node *A, *B, *C;
//Add node function.
void addNode(Node *& listpointer, int r, int c, int v) {
Node *temp;
temp = new Node;
temp->row = r;
temp->column = c;
temp->value = v;
temp->next = listpointer;
listpointer = temp;
}
//Matrix row file size function.
int getRowSize (char *file_name){
int row = 0;
int nothing = 0;
ifstream input;
string line;
input.open(file_name);
if(!input.good()){
cout << "Cannot open file " << file_name << endl;
exit(0);
}
if(input.good()){
getline(input,line);
stringstream sline(line);
sline >> row >> nothing;
}
return row;
}
//Matrix column file size function.
int getColumnSize (char *file_name){
int column = 0;
int nothing = 0;
ifstream input;
string line;
input.open(file_name);
if(!input.good()){
cout << "Cannot open file " << file_name << endl;
exit(0);
}
if(input.good()){
getline(input,line);
stringstream sline(line);
sline >> nothing >> column;
}
return column;
}
//Read from file to LL function.
void readMatrix(Node* &a, char *file_name){
int row = getRowSize(file_name);
int col = getColumnSize(file_name);
//cout << "Row = " << row <<" Column = "<< col <<endl;
int value = 0;
string line;
ifstream input;
input.open(file_name);
if(!input.good()){
cout << "Cannot open file " << file_name << endl;
exit(0);
}
if(input.good()){
getline(input,line);
stringstream sline(line);
sline >> row >> col;
//cout << "Matrix dimensions " << row << " " << col << endl;
}
for(int i = 0; i < row; ++i){
if(input.good()) {
getline(input,line);
stringstream sline(line);
for(int j = 0; j < col; ++j){
sline >> value;
if(value == 0) continue;
addNode(a, i, j, value);
//cout << "Element at (" << i << " " << j << ") is different than zero and it is: "<< value <<" \n";
}
//cout << endl;
}
}
input.close();
}
//Search function for print function.
int searchByPosition (Node *listpointer, int r, int c){
Node *current;
current = listpointer;
while (true){
if (current == NULL){ break; }
if (r == current->row && c == current->column) {
//cout << "Value = " << x << "\n";
return current->value;
}
current = current->next;
}
//cout << "Value not in list.\n";
return 0;
}
//Print function.
void printMatrix (Node *listpointer, int columnSize, int rowSize){
int c, r, v;
for (r=0; r < rowSize; ++r) {
for (c=0; c < columnSize; ++c) {
v = searchByPosition(listpointer,r,c);
printf("%d ", v);
}
printf("\n");
}
printf("\n");
}
//Function that mneasures both lists and creates a new combined list.
void concatenate (Node *&result, Node *listpointer1, Node *listpointer2){
Node *tempLP1, *tempLP2, *countLP1, *countLP2;
countLP1 = listpointer1;
countLP2 = listpointer2;
tempLP1 = listpointer1;
tempLP2 = listpointer2;
int listpointer1Size = 0;
int listpointer2Size = 0;
while (countLP1 != NULL) {
++listpointer1Size;
countLP1 = countLP1->next;
}
//cout << listpointer1Size <<endl;
while (countLP2 != NULL) {
++listpointer2Size;
countLP2 = countLP2->next;
}
//cout << listpointer2Size;
int resultSize = listpointer1Size + listpointer2Size;
//cout << resultSize;
for (int i=0; i < resultSize; ++i) {
if (tempLP1->column == tempLP2->column && tempLP1->row == tempLP2->row) {
//cout << result->value<<" "<<result->row<<" "<<result->column<<endl;
addNode(result, tempLP1->row, tempLP1->column, (tempLP1->value + tempLP2->value));
//cout <<"marker "<<i+1<<endl;
//result = result->next;
tempLP1 = tempLP1->next;
//cout << tempLP1->value<<" "<<tempLP1->row<<" "<<tempLP1->column<<endl;
//cout << result->value<<" "<<result->row<<" "<<result->column<<endl;
} else {
addNode(result, tempLP1->row, tempLP1->column, tempLP1->value);
//cout << tempLP1->value<<" "<<tempLP1->row<<" "<<tempLP1->column<<endl;
tempLP1 = tempLP1->next;
//addNode(result, listpointer2->row, listpointer2->column, listpointer2->value);
//cout <<"marker2"<<endl;
//cout << listpointer1->value;
//result = result->next;
//listpointer1 = listpointer1->next;
}
}
/*current = listpointer1;
prev = NULL;
while (current != NULL){
prev = current;
current = current->next;
}
if (prev == NULL){
//cout <<"List1 was empty, joining anyway.\n";
listpointer1 = listpointer2;
} else {
//cout <<"Join.\n";
prev->next = listpointer2;
}*/
}
int main() {
A = NULL; // ALL linked-lists start empty
B = NULL; // ALL linked-lists start empty
C = NULL; // ALL linked-lists start empty
readMatrix(A, (char*)"matrix1.txt");
readMatrix(B, (char*)"matrix2.txt");
int rowSize1 = getRowSize((char*)"matrix1.txt");
int colSize1 = getColumnSize((char*)"matrix1.txt");
//cout << rowSize << colSize;
printMatrix(A, rowSize1, colSize1);
printMatrix(B, rowSize1, colSize1);
concatenate(C, A, B);
//printMatrix(C, rowSize1, colSize1);
//printMatrix(B, rowSize1, colSize1);
}
我不明白你爲什麼需要一個組合列表。爲什麼不按順序遍歷每個列表,只需添加相應的值並正確顯示即可? – 2012-03-14 00:08:05