[数据结构-严蔚敏版]P95矩阵压缩-特殊矩阵的存储(对称矩阵,三角矩阵)

Posted Wecccccccc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[数据结构-严蔚敏版]P95矩阵压缩-特殊矩阵的存储(对称矩阵,三角矩阵)相关的知识,希望对你有一定的参考价值。

对称矩阵的存储:

代码如下:

#include <iostream>
using namespace std;

int main()
{
	int n;
	cin >> n;
	int *a;
	a = new int[(n*(n + 1)) / 2];
	for (int i = 0; i < (n*(n + 1)) / 2; i++)
	{
		cin >> a[i];
	}
	for (int i = 1; i <= n; i++)
	{
		for (int j = 1; j <= n; j++)
		{
			if (i >= j)
			{
				int idx = (i*(i - 1)) / 2 + (j - 1);
				cout << a[idx] << " ";
			}
			else
			{
				int idx = (j*(j - 1)) / 2 + (i - 1);
				cout << a[idx] << " ";
			}
		}
		cout << endl;
	}
	return 0;
}

三角矩阵的存储:

代码如下:

#include <iostream>
using namespace std;

int main()
{
	int *a;
	int n;
	cin >> n;
	int N = ((n*(n + 1)) / 2) + 1;
	a = new int[N];
	for (int i = 0; i < N; i++)
	{
		cin >> a[i];
	}
	for (int i = 1; i <= n; i++)
	{
		for (int j = 1; j <= n; j++)
		{
			if (i >= j)
			{
				int idx = (i*(i - 1)) / 2 + (j - 1);
				cout << a[idx] << " ";
			}
			else
			{
				cout << a[N - 1] << " ";
			}
		}
		cout << endl;
	}
	return 0;
}

以上是关于[数据结构-严蔚敏版]P95矩阵压缩-特殊矩阵的存储(对称矩阵,三角矩阵)的主要内容,如果未能解决你的问题,请参考以下文章

数据结构严蔚敏版课后答案

[数据结构-严蔚敏版]P48栈的链式表示

[数据结构-严蔚敏版]P46栈的顺序存储表示

[数据结构-严蔚敏版]P64循环队列-队列的顺序存储结构

[数据结构-严蔚敏版]P71串的抽象数据类型的定义

考研笔记之数据结构之线性表(严蔚敏版)