C++实现矩阵压缩
C++实现矩阵压缩
转置运算时一种最简单的矩阵运算。对于一个m*n的矩阵M,他的转置矩阵T是一个n*m的矩阵,且T(i,j) = M(j,i).
一个稀疏矩阵的转置矩阵仍然是稀疏矩阵。
矩阵转置
方案一:
1将矩阵的行列值相互交换
2将每个原则中的i j 相互交换
3重新排列三元组之间的次序
这种方法实现比较简单,一次迭代交换i j 值。
然后就是两层循环进行排序操作了。
方案二

具体实心步骤:
1 迭代遍历,统计列中元素个数
2 由1的结果迭代计算每一列中元素起始位置
3 依据2中得到数据进行转置操作
代码实现如下
//稀疏矩阵
#pragma once
#include <vector>
template<class T>
class Trituple
{
public:
Trituple(int row, int col, T& n)
:_row(row)
, _col(col)
, _value(n)
{}
int _row;
int _col;
T _value;
}; template<class T>
class SparseMatrix//稀疏矩阵
{
public:
SparseMatrix(T*a, const int m, const int n, T& invalid)///行序排列
:_rowSize(m)
, _colSize(n)
, _invalid(invalid)
{
size_t index = ;
for (int i = ; i < _rowSize; ++i)
{
for (int j = ; j < _colSize; ++j)
{
if (a[i*n + j] != _invalid)
{
_array.push_back(*(new Trituple<T>(i, j, a[i*n + j])));
//_array[index++] = (new Trituple<T>(i,j,a[i*n+j]));
}
}
}
} void Print()
{
size_t index = ;
for (int i = ; i < _rowSize; ++i)
{
for (int j = ; j < _colSize; ++j)
{
//if (_array[i*_colSize + j]._value != _invalid)
if ((_array[index]._row == i)&&(_array[index]._col == j))
{
cout << _array[index++]._value << "->";
}
else
{
cout << _invalid<<" ->";
}
}
cout << endl;
}
cout << endl;
} //转置方案:交换行列大小 值,交换元祖内部行列值. 重新排序vector;
SparseMatrix<T> Transpose()
{
SparseMatrix<T> x(*this);
::swap(x._rowSize, x._colSize);
x._array.clear();
int i = ;
for (int j = ; j < _colSize; ++j)
{
i = ;
while (i < _array.size())
{
if (j == _array[i]._col)
{
//////////////////////////////////////////////////////////////////
//Trituple<T> t(_array[i]._row, _array[i]._col, _array[i]._value);
Trituple<T> t(_array[i]._col, _array[i]._row, _array[i]._value);
x._array.push_back(t);
}
++i;
}
}
return x;
}
SparseMatrix<T> FastTranspose()
{
//①:计算并保存每一列中非0元的个数;
//②:求col列中第一个非0元在矩阵中的行位置。
//③:依据以上,进行插入操作,并且更新cpot中的值
SparseMatrix<T> x(*this);
x._colSize = _rowSize;
x._rowSize = _colSize;
x._invalid = _invalid;
if (_array.size())
{
int* RowCount = new int[_colSize]; //列中元素数
int* RowStart = new int[_colSize]; //列中元素起始位置
memset(RowCount, , sizeof(int)*_colSize);
memset(RowStart, , sizeof(int)*_colSize);
int index = ;
while (index < _array.size()) //一次迭代O(n)
{
++RowCount[_array[index++]._col];
}
index = ;
while (index < _colSize) //O(n)
{
RowStart[index] = RowStart[index - ] + RowCount[index - ];
++index;
}
//执行快速转置
int i = ;
while (i < _array.size()) //两次迭代 O(n)
{
int col = _array[i]._col;
int start = RowStart[col];
x._array[start]._row = _array[i]._col;
x._array[start]._col = _array[i]._row;
x._array[start]._value = _array[i]._value;
++RowStart[col];
i++;
}
delete[]RowCount;
delete[]RowStart;
}//if
return x;
}
~SparseMatrix()
{
}
private:
vector<Trituple<T> > _array;
size_t _rowSize;
size_t _colSize;
T _invalid;
};
C++实现矩阵压缩的更多相关文章
- [Swust OJ 589]--吃西瓜(三维矩阵压缩)
题目链接:http://acm.swust.edu.cn/problem/589/ Time limit(ms): 2000 Memory limit(kb): 65535 Description ...
- Poj 3318 Matrix Multiplication( 矩阵压缩)
Matrix Multiplication Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 18928 Accepted: ...
- 【矩阵压缩】 poj 1050
题意:给一个矩阵,里面有正负数,求子矩阵和的最大值 #include <iostream> #include <cstdio> #include <stdlib.h> ...
- To the Max(矩阵压缩)
To the Max Time Limit : 2000/1000ms (Java/Other) Memory Limit : 20000/10000K (Java/Other) Total Su ...
- 矩阵压缩写法 scipy spark.ml.linalg里都有,CRS,CCS
CRS 表示:Compressed Row Storage CCS 表示:Compressed Column Storage CRS的表示参考: https://blog.csdn.net/buptf ...
- 强大的矩阵奇异值分解(SVD)及其应用
版权声明: 本文由LeftNotEasy发布于http://leftnoteasy.cnblogs.com, 本文可以被全部的转载或者部分使用,但请注明出处,如果有问题,请联系wheeleast@gm ...
- 机器学习中的数学-矩阵奇异值分解(SVD)及其应用
转自:http://www.cnblogs.com/LeftNotEasy/archive/2011/01/19/svd-and-applications.html 版权声明: 本文由LeftNotE ...
- 机器学习中的数学(5)-强大的矩阵奇异值分解(SVD)及其应用
版权声明: 本文由LeftNotEasy发布于http://leftnoteasy.cnblogs.com, 本文可以被全部的转载或者部分使用,但请注明出处,如果有问题,请联系wheeleast@gm ...
- 高速压缩跟踪(fast compressive tracking)(CT)算法分析
本文为原创,转载请注明出处:http://blog.csdn.net/autocyz/article/details/44490009 Fast Compressive Tracking (高速压缩跟 ...
随机推荐
- bash: ./a.sh: /bin/bash^M: bad interpreter: No such file or directory的解决方法------dos--->unix
一些人喜欢用vim来写linux shell script, 但是, 有的人喜欢在Windows下用一些方便的编辑器(比如鼎鼎大名的Notepad++)写好, 然后拷贝文件到linux下, 结果呢, ...
- php内存溢出,出现Allowed memory size of 8388608 bytes exhausted错误的解决办法
是因为php页面消耗的最大内存默认是为128M (在PHP的ini件里可以看到) ,如果文件太大或图片太大在读取的时候会发生上述错误. 解决办法: 1.修改 php.ini 将memory_limit ...
- oracle 查看隐藏参数
隐藏参数 (hidden parameters) ,由oracle内部使用,以 '_' 开头. 可以通过以下两种方式查看所有隐藏参数: SELECT i.ksppinm name, i.ksppd ...
- 国内Hadoop相关的开源项目
1.BC-Hadoop:中国移动Hadoop工具链打包 https://github.com/cmri/bc-hadoop2.0 孵化阶段,将成为一个通用的开源Hadoop平台 2.BC-BSP:中国 ...
- maven install jdk版本自动降为1.7
开发过程中遇到了一个奇怪的现象. IDEA中所有的设置都改成了1.8,但是在执行maven install时却自动降为1.7,报错提示: [ERROR] Failed to execute goal ...
- Python之路——堡垒机原理及其简单实现
1 堡垒机基本概述 其从功能上讲,它综合了核心系统运维和安全审计管控两大主干功能,从技术实现上讲,通过切断终端计算机对网络和服务器资源的直接访问,而采用协议代理的方式,接管了终端计算机对网络和服务器的 ...
- Javascript中的函数数学运算
1.Math函数与属性使用语法 Math.方法名(参数1,参数2,...); Math.属性; 说明 Math函数可以没有参数,比如Math.random()函数,或有多个参数,比如Math.max( ...
- JqGrid 隐藏水平滚动条完美解决方案
我有强迫症,网上找的几个看着就不舒服 不用更改样式表,隐藏最右侧的边框. .ui-jqgrid .ui-jqgrid-bdiv{ overflow-x: hidden; } 不用通过js控制加1px ...
- [Deep Learning]学习资料积累
1. ufldl教程√ Andrew Ng的教程,matlab代码. 2. Neural Network and Deep Learning√: 一本未写完的书,非常细致,对基础的概念比如cross ...
- js正则匹配两位小数
今天写一个用js正则校验最多保留两位小数的格式. a = /^\d+|\d+\.\d{1,2}$/; 测试 a.test(1.222); 结果:true 一下蒙了,怎么可能,最后找了好久,原来需要把^ ...