搜索资源列表
数据结构的C++描述
- 目 录 译者序 前言 第一部分 预备知识 第1章 C++程序设计 1 1.1 引言 1 1.2 函数与参数 2 1.2.1 传值参数 2 1.2.2 模板函数 3 1.2.3 引用参数 3 1.2.4 常量引用参数 4 1.2.5 返回值 4 1.2.6 递归函数 5 1.3 动态存储分配
矩阵的压缩存储(对称矩阵,三角矩阵,稀疏矩阵)
- 矩阵的压缩存储 问题描述:矩阵是许多科学与工程计算问题中出现的数学对象。在此,我们感兴趣的不是矩阵本身,我们所关心的是研究表示矩阵的方法,以使对矩阵的各种运算能有效地完成。一个矩阵一般由m行和n列元素组成,一般的m*n阶矩阵,可表示成一个m*n的二维数组,例如matrix[m][n],需要的存储空间是m*n 实现要求: 若矩阵中的元素是对称的,即矩阵中第i行第j列与第j行第i列元素的值相等,即matrix[i][j]=matrix[j][i],我们把这种矩阵称为对称矩阵。对于n*n阶对称矩阵,我
teshujuzhen
- 特殊矩阵包括各种矩阵(对三角矩阵)的压缩存储-Including special Matrix matrix (right triangular matrix) of compressed storage
matrixcompress
- C语言实现矩阵压缩的小程序 掌握特殊矩阵通过压缩存储算法进行压缩存储的方法,并编程实现相关功能。 基本要求: (1) 可以对对称矩阵、上三角矩阵、下三角矩阵、三对角矩阵进行压缩存储; (2) 原始矩阵通过键盘输入,执行后输出压缩后的矩阵; (3) 输入在原始矩阵中的位置,能够得出压缩后的位置; (4) 原始矩阵的行列数从键盘输入。 -C language implementation of small programs to master matrix comp
Matrix
- C语言实现的几种特殊矩阵的压缩存储,包含上三角矩阵,下三角矩阵,条形矩阵,稀疏矩阵等的要所存储!-C language implementation of several specific matrix compression and storage, including the upper triangular matrix, lower triangular matrix, linear matrix, sparse matrix, etc. to the store!
werrgtret
- 考研:特殊矩阵通过压缩存储算法进行压缩存储的方法-matrix, lower triangular matrix, tridiagonal matrix
Data_structure_Compressed_Storage_Special_Matrices
- 数据结构-特殊矩阵的压缩存储Data structure - Compressed Storage Special Matrices -Data structure- Special matrix compression storage Data structure- Compressed Storage Special Matrices
teshujuzhen
- 压缩存储特殊矩阵,其中包括对称矩阵,上,下三角矩阵,三对角矩阵-Compression and storage of special matrices, including symmetric matrix, the upper and lower triangular matrix, tridiagonal matrix
fret
- 描述 元素以对角线为对称轴对应相等的矩阵。 采用特殊矩阵的压缩存储方式。即使用一维数组保存下三角的矩阵元。 输入 第一行输入矩阵的阶n; 第二行按行序排列的所有下三角矩阵元。(中间用空格分隔) (例如上图所示矩阵的输入次序为:1 5 0 1 8 9 3 0 2 5 7 0 6 1 3) 第三行为正整数 i和j(0< i, j <=n)-Describe the elements to
yaSuoCunChu
- 广义表 特殊矩阵 压缩存储 C++ 数据结构 广义表 特殊矩阵 压缩存储 C++ 数据结构-Generalized form of special matrix compression data structure stored in C++
diagnonal-matrix
- 一个特殊矩阵的压缩存储程序,主要针对对称矩阵与三角矩阵-A special matrix of compressed storage program, mainly for symmetric matrices and triangular matrix