数据结构实验5 数组和稀疏矩阵

这篇博客介绍了如何使用C++实现数组和稀疏矩阵的数据结构,包括TSMatrix.cpp和TSMatrix.h两个文件的内容,展示了运行结果。
摘要由CSDN通过智能技术生成

TSMatrix.cpp

#define M 6
#define N 7
#include "TSMatrix.h" 
int main()
{
	TSMatrix t;
	ElemType x;
	ElemType a[M][N]={
  {0,12,9,0,0,0,0},{0,0,0,0,0,0,0},{3,0,0,0,0,14,0},{0,0,24,0,0,0,0},{0,18,0,0,0,0,0},{15,0,0,-7,0,0,0}};
	CreatMat(t,a);
	printf("三元组t表示:\n");DispMat(t);
	printf("执行A[4][3]=5\n");
	Value(t,5,4,3);
	printf("三元组t表示:\n");DispMat(t);
	printf("求A[2][0]的值\n");
	Assign(t,x,2,0);
	printf("x=%d\n",x);
	return 0;
}

TSMatrix.h

#include <iostream>
using namespace std;
#define MaxSize 100
typedef char ElemType;
typedef struct 
{
	int r;
	int c;
	ElemType d;
} TupNode;
typedef struct
{
	int rows;
	int cols;
	int nums;
	TupNode data[MaxSize];
} TSMatrix;
void CreatMat(TSMatrix &t,ElemType A[M][N])
{
	int i,j;
	t.rows=M;t.cols=N;t.nums=0;
	for (i=0;i<M;i++)
	{
		for (j=0;j<N;j++)
			if (A[i][j]!=0)
			{
				t.data
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值