搜索资源列表
zxh
- 在VC环境下实现稀疏矩阵的转置!这个程序是以C语言写的,而且用的是数据结构的三元组表示矩阵!-in VC environment under the sparse matrix switch home! This program is written in C language, but using the data structure of ternary group said Matrix!
数据结构上机实习
- 数据结构上机实验 实验题目:两个有序循环链表合并成一个有序循环链表 实验题目:欧洲地图最短路径 实验题目:稀疏矩阵基本运算及转置 实验题目: 已给定先序构造一棵二叉树的算法,请你完成其余部分,包括先序、中序、后序遍历 二叉树并打印出来。先序序列建立二叉树的顺序读入字符为A B C Ф Ф D E Ф G Ф Ф F Ф Ф Ф,注意输入时Ф用空格代替。 实验题目:复数抽象数据类型的实现
TSMatrix
- 实现稀疏矩阵的三元组顺序表示方法及基本操作的实现(建立、输出、转置等)。
C++juzhen
- 设计类(或类模板)来描述稀疏矩阵及其操作,包含必要的构造函数和析构函数,以及其他能够完成如下功能的成员函数: 输入、输出稀疏矩阵 稀疏矩阵的转置运算 稀疏矩阵的相加运算 稀疏矩阵的相乘运算 并设计主函数测试该类。
Matrix
- 实现稀疏矩阵的各种运算操作,包括加法,减法,乘法,转置,求逆矩阵-Sparse matrix operations to achieve a variety of operations including addition, subtraction, multiplication, transpose, inverse matrix
00
- 该程序利用C++实现了求稀疏矩阵的转置矩阵。整个程序运用了3次函数的调用。-The program using C++ Achieved for sparse matrix transpose matrix. Use of the whole process 3 times function call.
1989xishujuzheng
- 稀疏矩阵采用三元组表示。(1)求两个具有相同行列数的稀疏矩阵A和B的相加矩阵C,并输出C。(2)求出C的转置矩阵D,输出D。-The use of sparse matrix triple that. (1) for the ranks of the two with the same number of sparse matrix A and B the sum of matrix C, and output C. (2) calculated C matrix transpose of D,
matrix
- 求任意稀疏矩阵的转置矩,并按要求完整输出。-Seeking an arbitrary sparse matrix transpose, as required, the output moments
sparematrix
- 稀疏矩阵转置算法,经常使用,可以用于复习数据结构-Sparse matrix transpose algorithm, frequently used data structures can be used to review
5-2
- 用三元组存放输入的两个稀疏矩阵A34和B34,将稀疏矩阵A转置后与稀疏矩阵B相乘,结果存放三元组C,并输出结果-The triples store of the two input sparse matrix A34 and B34, the sparse matrix A transpose sparse matrix B after multiplying the result stored triple C, and output
SparseMatrix
- 用三元组实现的稀疏矩阵运算 用户输入正常矩阵 但存储为三元组 可以实现加,乘和转置三种运算-Achieved with a triple sparse matrix operations the user to enter the normal matrix, but storage can be achieved for the triple add, multiply, and transpose three kinds of operations
xishujuzhenzhuanzhi
- 11、 稀疏矩阵转置: 输入稀疏矩阵中每个元素的行号、列号、值,建立稀疏矩阵的三元组存储结构,并将此矩阵转置,显示转置前后的三元组结构-11, sparse matrix transpose: Enter the sparse matrix in each element of the line number, column number, value, and the establishment of the triple sparse matrix storage structure, an
Sparse-matrix
- 稀疏矩阵的 产生 和转置 快速转置 主要是 数据结构 课程内容-Fast transpose sparse matrix and transpose
a
- 矩阵的转置,相乘及界面的面换稀疏矩阵的三元组相加-Sum of the transpose of the matrix, multiplying, and interfacial surface replacing the sparse matrix triples
matrix
- 三元组顺序表 稀疏矩阵 快速转置 三元组顺序表 稀疏矩阵 快速转置 -The sequence tables triples sparse matrix quickly transpose
xishujuzhen
- 实现稀疏矩阵的加减乘和转置,方便利用该程序进行简要矩阵的运算-The sparse matrix addition and subtraction, multiplication, and transpose to facilitate the use of the program briefly matrix computing
SSSS
- 以三元组存储结构,稀疏矩阵的加法,乘法,转置等相关算法。-Triples storage structure, sparse matrix addition, multiplication, transpose algorithm.
xishujuz
- 稀疏矩阵的c语言实现,本文设计了一个稀疏矩阵的运算器实现了稀疏矩阵的转置和加减乘算法-Sparse matrix c language, designed a sparse matrix operations to achieve a sparse matrix transpose and addition and subtraction multiplication algorithm
Sparse
- 稀疏矩阵三元组表的基本运算:初始化、创建、转置、加法等-Sparse matrix triples basic operations: initialization, create, transpose, addition, etc.
新建 Microsoft Word 文档
- 实现稀疏矩阵的转置、加法和乘法操作,输入格式 输入数据的第一行是三个整数 m, n, l。分别表征矩阵的行数、列数和待输入元素总数。接下来的 l 行, 每一行是三个整数 i, j, v 表示一个矩阵中行号为 i 列号为 j 值为 v 的元素。 m 和 n 的范围是 1000 以内, l 则是 10000 以内。每一个 v 都是在 -10 到 10之间的整数。 注意:这里的行号列号均从0开始,参照题目描述中的样例。 输出格式 输出是你打印的三个矩阵, 依次是输入矩阵的转