十字链表的实现C++

本文详细介绍了如何使用C++实现十字链表来存储稀疏矩阵,探讨了这一数据结构在处理大量非零元素时的优势。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

稀疏矩阵的存储——十字链表

<span style="font-size:18px;">/*
稀疏矩阵的存储——十字链表的实现
*/
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
//数据节点

class Node
{
public:
	int row;
	int col;
	class Node *right, *down;
	union Tag
	{
		int value;
		class Node *link;
	}tag;
};

//十字链表
class Matrix
{
public:
	Matrix(){}
	~Matrix(){}
	//得到行列最大值
	void MAX_N(int &res, int row, int col)
	{
		res = (row > col ? row : col);
	}
	//创建十字链表
	void CreateMat(string filename,int trow, int tcol)
	{
		int i, j;
		int MAX;
		MAX_N(MAX, trow, tcol);//确定行列最大数
		Node *h;//共用的行列头结点
		Node *p, *q, *r;
		mh = (Node *)malloc(sizeof(Node));//头结点
		mh->row = trow;//总行数
		mh->col = tcol;//总列数
		r = mh;
		i = 0;
		//生成所有行列头结点(尾插法)
		while (i < MAX)
		{
			h = (Node *)malloc(sizeof(Node));
			h->down = h->right = h;
			r->ta
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值