Procesamiento de imágenes Fundamentos de C ++ 02-Multiplicación de matrices con archivos de lectura y escritura

objetivos:

  1. Domina el uso combinado de punteros, estructuras y archivos. Argumento de participación en forma maestra
  2. Primero, domine los conceptos básicos y las operaciones básicas de los archivos de texto en lenguaje C a través de la lectura. Familiarizado con la lectura y escritura de archivos de texto, fopen / fclose, fscanf / fprintf y otras funciones.                
  3. Ejercicio práctico 1 : escriba varios números y cadenas de caracteres en un archivo. Leer y mostrar.
  4. A través de la lectura, domine los conceptos básicos de estructura; aprenda y practique matrices de estructura, conceptos de puntero de estructura.                                                                                             
  5. Ejercicio práctico 2 : Represente la matriz como una estructura Los miembros incluyen: el número de filas y columnas de la matriz, y punteros a elementos específicos de la matriz, luego vuelva a hacer el primer ejercicio.

operación:

Multiplicación de matrices usando archivos de lectura y escritura


Reclamación:

Lea cada matriz en el archivo de texto especificado, calcule el resultado de la multiplicación de múltiples matrices y escriba el resultado en otro archivo de texto.
El nombre del archivo es arbitrario; como archivo de entrada: input.txt; archivo de salida out.txt
Formato de archivo de entrada: registre varias matrices en un archivo y varias matrices están separadas por líneas en blanco. similar:
1 3 2
2 5 4


3
8
12

(El archivo anterior incluye 2 matrices, 2 * 3 y 3 * 1 respectivamente)(Sugerencia: para matrices múltiples, se pueden usar matrices de estructura / punteros de estructura)


#include 
   
    
#include 
    
     
#include 
     
      
using namespace std;

struct mat		/*结构体,包含每个矩阵自身的信息,以及下一个矩阵的存储位置*/
{
	int rows = 0;
	int columns = 0;
	int **a = NULL;
	struct mat *next = NULL;
}result;

void input()		/*向矩阵中输入数据*/
{
	int i, j, num = 0, flag = 0;
	char ch;
	struct mat *p=NULL;
	FILE *fp;
    /*打开文件*/
	if ((fp = fopen("input.txt", "r")) == NULL){
		cout << "Error.";
		exit(1);
	}

	p = result.next;
	while (p != NULL){
	    /*开括矩阵空间*/
		if ((p->a = (int **)malloc(p->rows*sizeof(int *))) == NULL){
			cout << "ERROR!";
			exit(1);
		}
		for (i = 0; i < p->rows; i++)
			if ((p->a[i] = (int *)malloc(p->columns*sizeof(int))) == NULL){
				cout << "ERROR!";
				exit(1);
			}

		for (i = 0; i < p->rows; i++)
			for (j = 0; j < p->columns; j++){
				while (1){
					ch = fgetc(fp);
					/*将数值记录下来*/
					if (ch >= '0' && ch <= '9'){
						num = num * 10 + (int)(ch - '0');
						flag = 0;
					}
					else{
						if (ch == 10)
							flag++;
						if (flag == 2){
							flag = 0;
							continue;
						}
						p->a[i][j] = num;
						num = 0;
						break;
					}
				}
			}
		p = p->next;
	}

	fclose(fp);
	/*创建存结果的矩阵*/
	if ((result.a = (int **)malloc(result.rows*sizeof(int *))) == NULL){
		cout << "ERROR!";
		exit(1);
	}
	for (i = 0; i < result.rows; i++)
		if ((result.a[i] = (int *)malloc(result.columns*sizeof(int))) == NULL){
			cout << "ERROR!";
			exit(1);
		}
}
/*释放空间*/
void freespace()		
{
	struct mat *p1 = NULL, *p2 = NULL;
	int i;

	p1 = result.next;
	while (p1!=NULL){
		p2 = p1;
		p1 = p1->next;
		for (i = 0; i < p2->rows; i++)
			free(p2->a[i]);
		free(p2->a);
		free(p2);
	}
}

void calculate()		/*计算矩阵乘法*/
{
	struct mat *p = NULL, temp;
	int i, j, k;

	p = result.next;
	for (i = 0; i < p->rows; i++)		/*第一个矩阵可以直接把数据给result矩阵*/
		for (j = 0; j < p->columns; j++)
			result.a[i][j] = p->a[i][j];
	result.rows = p->rows;			/*记录现在的矩阵的行列数*/
	result.columns = p->columns;
	p=p->next;
	/*创建一个临时矩阵,用于计算*/
	if ((temp.a = (int **)malloc(result.rows*sizeof(int *))) == NULL){
		cout << "ERROR!";
		exit(1);
	}
	for (i = 0; i < result.rows; i++)
		if ((temp.a[i] = (int *)malloc(result.columns*sizeof(int))) == NULL){
			cout << "ERROR!";
			exit(1);
		}

	while (p != NULL){
		for (i = 0; i < result.rows; i++)			/*把result矩阵里的数给临时矩阵,并将result矩阵清零*/
			for (j = 0; j < result.columns; j++){
				temp.a[i][j] = result.a[i][j];
				result.a[i][j] = 0;
			}
		temp.rows = result.rows;
		temp.columns = result.columns;
		for (i = 0; i < temp.rows; i++)		/*进行临时矩阵和当前矩阵的乘法运算,将结果保存在result矩阵*/
			for (j = 0; j < p->columns; j++){
				for (k = 0; k < temp.columns; k++)
					result.a[i][j] += temp.a[i][k] * p->a[k][j];
			}
		result.columns = p->columns;		/*记录当前的矩阵列数,行数则不变*/
		p = p->next;
	}
}

int main(void)
{
	FILE *fp;
	char ch;
	int flag = 0, r = 0, c = 0;
	struct mat *p = NULL, *temp = NULL;

	p = &result;
	/*打开文件*/
	if ((fp = fopen("input.txt", "r")) == NULL){
		cout << "Error.";
		exit(1);
	}

	do		/*一直读到文件结束为止*/
	{
		ch = fgetc(fp);
		if (ch >= '0' && ch <= '9')		/*记录有多少个元素*/{
			flag = 0;
			continue;
		}
		r++;
        /*记录连续的换行符的个数,若有连续两个换行符,说明下面是一个新的矩阵*/
		if (ch == 10){
			flag++;
			c++;
		}
        /*将每个矩阵的行列数记录下来*/
		if (flag == 2 || ch == EOF){
			temp = (struct mat*)malloc(sizeof(struct mat));
			temp->rows = c + 1 - flag;
			temp->columns = (r - 1) / temp->rows;
			temp->next = NULL;
			if (temp->rows > result.rows)
				result.rows = temp->rows;
			if (temp->columns > result.columns)
				result.columns = temp->columns;
			p->next = temp;
			p = p->next;
			flag = 0;
			c = 0;
			r = 0;
		}
	} while (ch != EOF);

	fclose(fp);
	input();
	calculate();
    /*打开文件*/
	if ((fp = fopen("out.txt", "w")) == NULL){
		cout << "Error.";
		exit(1);
	}
    /*输出运算结果*/
	for (int i = 0; i < result.rows; i++){
		for (int j = 0; j < result.columns; j++)
			fprintf(fp,"%d\t",result.a[i][j]);
		fprintf(fp,"\n");
	}
	fclose(fp);
	freespace();

	return 0;
}


/*
本程序要求input.txt具有如下格式:

1 3 2(每行最后一个数后面的字符为换行符)
2 5 4
		(矩阵之间空一行,且这一行只有一个换行符)
3
8
12
		(文件结束标志“EOF”必须在最后一个数的下一行,且这一行只有这一个字符)


*/
     
    
   

Supongo que te gusta

Origin blog.csdn.net/qq_26751117/article/details/53447512
Recomendado
Clasificación