真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

對稱矩陣和稀疏矩陣

對稱矩陣

在南明等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務理念,為客戶提供網(wǎng)站建設、網(wǎng)站設計 網(wǎng)站設計制作按需求定制網(wǎng)站,公司網(wǎng)站建設,企業(yè)網(wǎng)站建設,高端網(wǎng)站設計,營銷型網(wǎng)站,外貿(mào)網(wǎng)站建設,南明網(wǎng)站建設費用合理。

 

Matrix.h

 

#pragma once
 
template
class SymmetricMatrix
{
public:
 SymmetricMatrix(const T* a, size_t N) //對稱矩陣 只存下三角
:_a(new T[N*(N + 1) / 2])
,_n(N)
{
size_t index = 0;
for (size_t i = 0; i < N; ++i)
{
for (size_t j = 0; j < N; ++j)
{
if (i >= j)
{
_a[index++] = a[i*N + j];
}
else
{
break;
}
}
}
}
 ~SymmetricMatrix()
 {
 }
void Display()
{
for (size_t i = 0; i < _n; ++i)
{
for (size_t j = 0; j <_n; ++j)
{
if (i >= j)//訪問下三角
{
cout << _a[i*(i + 1) / 2 + j] << " ";
}
else  //訪問上三角
{
cout << _a[j*(j + 1) / 2 + i] << " ";
}
}
cout << endl;
}
cout << endl;
}
T& Access(size_t i, size_t j)//訪問i,j這里的數(shù)據(jù)
{
if (i < j)//若為上三角,交換
{
swap(i, j);
}
return _a[i(i + 1) / 2 + j];
}
protected:
T* _a;
size_t _n;
};
void Test1()
{
int a[5][5] =
{
{ 0, 1, 2, 3, 4 },
{ 1, 0, 1, 2, 3 },
{ 2, 1, 0, 1, 2 },
{ 3, 2, 1, 0, 1 },
{ 4, 3, 2, 1, 0 },
};
SymmetricMatrix sm((int*)a, 5);
sm.Display();
}
 
Test.cpp
 
#include
using namespace std;
#include"Matrix.h"
int main()
{
Test1();
system("pause");
return 0;
}

 

對稱矩陣和稀疏矩陣 

 

 

稀疏矩陣

Matrix.h

#include
template
struct Triple  //三元組
{
size_t _row;
size_t _col;
T _value;
 
Triple(size_t row=0, size_t col=0, const T& value=T())
:_row(row)
,_col(col)
, _value(value)
 
{}
};
 
template
class SqarseMatrix  //稀疏矩陣
{
public:
SqarseMatrix(size_t M, size_t N, const T& invalid)
:_M(M)
, _N(N)
, _invalid(invalid)
{}
SqarseMatrix(const T* a, size_t M, size_t N,const T& invalid)
:_M(M)
, _N(N)
, _invalid(invalid)
{
for (size_t i = 0; i < M; ++i)
{
for (size_t j = 0; j < N; ++j)
{
if (a[i*N + j] != invalid)
{
Triple t(i, j, a[i*N + j]);
_a.push_back(t);
}
}
}
}
void Display()
{
size_t index = 0;
for (size_t i = 0; i < _M; ++i)
{
for (size_t j = 0; j <_N; ++j)
{
if (index<_a.size()&&i == _a[index]._row && j == _a[index]._col)//不能超出有效值的范圍
{
cout << _a[index]._value << " ";
++index;
}
else //不是有效值則輸出非法值
{
cout << _invalid << " ";
}
}
cout << endl;
}
cout << endl;
}
SqarseMatrix Transport()  //轉(zhuǎn)置
{
//o(有效數(shù)據(jù)的個數(shù)*列數(shù))
SqarseMatrix sm(_N,_M,_invalid);
 
for (size_t i = 0; i < _N; ++i)
{
size_t index = 0;
while (index < _a.size())
{
if (_a[index]._col == i)
{
Triple t(_a[index]._col, _a[index]._row, _a[index]._value);
sm._a.push_back(t);
}
++index;
}
}
return sm;
}
 
SqarseMatrix FastTransport()  //快速轉(zhuǎn)置
{
//O(2*有效數(shù)據(jù)個數(shù)+列數(shù))
SqarseMatrix sm(_N, _M, _invalid);
int* rowCounts = new int[_N];
memset(rowCounts, 0, sizeof(int)*_N);//初始化
 
size_t index = 0;
while (index < _a.size())
{
rowCounts[_a[index]._col]++;
++index;
}
int* rowStart = new int[_N];
rowStart[0] = 0;
for (size_t i = 1; i < _N; ++i)
{
rowStart[i] = rowStart[i - 1] + rowCounts[i - 1];
}
index = 0;
sm._a.resize(_a.size());
while (index < _a.size())
{
size_t row = _a[index]._col;//轉(zhuǎn)置前的列就是轉(zhuǎn)置后的行
int& start = rowStart[row];//每行的起始位置,第一個起始位置就是0
Triple t(_a[index]._col, _a[index]._row, _a[index]._value);
sm._a[start] = t;
++start;
 
++index;
}
delete[] rowCounts;
delete[] rowStart;
return sm;
}
protected:
vector> _a;
size_t _M;
size_t _N;
T _invalid;
};
 
void Test2()
{
int a[6][5] = { { 1, 0, 3, 0, 5 },
                { 0, 0, 0, 0, 0 },
                { 0, 0, 0, 0, 0 },
                { 2, 0, 4, 0, 6 },
                { 0, 0, 0, 0, 0 }};
SqarseMatrix sm((int*)a, 6, 5, 0);
sm.Display();
SqarseMatrix sm2 = sm.Transport();
sm2.Display();
SqarseMatrix sm3 = sm.FastTransport();
sm3.Display();
}
 
Test.cpp
#include
using namespace std;
#include"Matrix.h"
int main()
{
//Test1();
Test2();
system("pause");
return 0;
}

對稱矩陣和稀疏矩陣

 

 

 

 

 

 

 


本文名稱:對稱矩陣和稀疏矩陣
URL分享:http://weahome.cn/article/iiphpd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部