当前位置:网站首页>C语言使用随机数生成矩阵,实现三元组的快速转置。
C语言使用随机数生成矩阵,实现三元组的快速转置。
2020-11-10 10:51:00 【osc_b9r67jnt】
稀疏矩阵压缩及转置
1、随机数生成矩阵算法思想:使用time()函数给随机数播种,获得矩阵的总行数,总列数,非零元个数。总行数与总列数的值可直接存入三元组。每次生成一个非零元的行与列之后,由键盘输入非零元的大小e;并将其先存入二维数组a[][]。
2、压缩矩阵至三元组的算法思想:获得矩阵之后,将其压缩进三元组表当中,三元组的非零元个数初始中为0,因在生成随机矩阵的过程中可能会出现相同的行、列,导致矩阵非零元被覆盖,所以具体的非零元个数以矩阵当中的为准。遍历矩阵,如果存在非零元,则将该元素的行标i与列标j,存入三元组,同时非零元个数+1。
3、打印矩阵的算法思想:先打印每一行的元素,如果i,j与三元组表里的i,j相匹配,则打印元素,否则打印0。
4、三元组快速转置的算法思想:求得被转置矩阵M的每一列的非零元个数,进而求得每一列的第一个非零元在T.data中应有的位置,故需要两个辅助向量:num与copt。先使T.mu=M.nu、T.nu=M.mu、T.tu=M.tu。如果T.tu不等于0,则先求每一列中的非零元个数num[col],col从1到M.nu;再求位置copt[col],copt[col]=copt[col-1]+num[col-1] ,col从2到M.nu,copt[1]=1;最后进行转置操作,令M的i,j互换,每次互换一个元素则++copt[col]。
5、具体实现代码如下:
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#define MAXSIZE 200
#define OK 1
#define FALSE 0
#define OVERFLOW -2
#define ERROR 0
typedef int Status;
typedef int ElemType;
typedef struct
{
int i,j;
ElemType e;
}Triple;
typedef struct
{
Triple data[MAXSIZE+1];
int mu,nu,tu;
}TSMatrix;
Status CreateMatrix(TSMatrix *M)
{
int i,j,n,k; //行,列,非零元个数
int a[50][50]={
0}; //存放矩阵,初始值为0
ElemType e;
printf("本次稀疏矩阵的行数与列数均由随机数产生!\n");
srand((unsigned)time(NULL) + (unsigned)rand()); //以time()为种子生成随机数
(*M).mu=rand()%10+6; //随机行大小,取余是确定范围,mu在(6~15)之间
(*M).nu=rand()%10+7; //随机列大小
k=rand()%10+6; //随机非零元个数
printf("该稀疏矩阵的行数为%d,列数为%d,非零元个数为%d。",(*M).mu,(*M).nu,k);
(*M).data[0].i=0;
for(n = 1; n <= k; n++) //生成随机数矩阵
{
i=rand()%(*M).mu+1;
j=rand()%(*M).nu+1;
printf("请按行序输入第 %d 个非零元素,行%d,列%d,元素值:\n",n,i,j);
scanf("%d",&e);
a[i][j]=e;
}
(*M).tu=1;
for(i=1;i<=(*M).mu;i++) //以行为主序存入三元组
{
for(j=1;j<=(*M).nu;j++)
{
if(a[i][j]!=0)
{
(*M).data[M->tu].i = i; //行下标
(*M).data[M->tu].j = j; //列下标
(*M).data[M->tu].e = a[i][j]; //该下标所对应的值
M->tu++;
}
}
}
M->tu--;
return OK;
}
Status PrintMatrix(TSMatrix M)
{
int i,j,n=1;
printf("\n\n");
for(i=1;i<=M.mu;i++)
{
for(j=1;j<=M.nu;j++)
{
if(M.data[n].i==i&&M.data[n].j==j)
{
printf("%4d",M.data[n].e);
n++;
}
else
printf("%4d",0);
}
printf("\n");
}
}
Status FastTransposeSMatrix(TSMatrix M,TSMatrix *T)
{
int col,t,p,q;
int *num,*copt;
num=(int*)malloc((M.nu+1)*sizeof(int)); //给num分配内存空间;大小为M的列数+1,num[1]开始
copt=(int*)malloc((M.nu+1)*sizeof(int)); //copt表示该列的第一个非零元在T.data中的位置,copt大小与num相等
T->mu=M.nu; T->nu=M.mu; T->tu=M.tu; //T的行数等于M的列数,列数等于行数,非零元个数相等
if(T->tu) //非空
{
for(col=1;col<=M.nu;++col)
num[col]=0; //清零操作
for(t=1;t<=M.tu;++t)
++num[M.data[t].j]; //求M中每一列含非零元个数
copt[1]=1; //M的第一列的第一个非零元在T的第一个位置
for(col=2;col<=M.nu;++col)
copt[col]=copt[col-1]+num[col-1]; //累加操作,比较复杂,求每一列的第一个非零元在T.data中的位置
for(p=1;p<=M.tu;++p)
{
col=M.data[p].j; q=copt[col];
T->data[q].i=M.data[p].j; //转置操作
T->data[q].j=M.data[p].i;
T->data[q].e=M.data[p].e;
++copt[col]; //位置已用,计数加一
}
}
return OK;
}
void main()
{
TSMatrix M,T;
CreateMatrix(&M);
printf("原始矩阵如下:\n");
PrintMatrix(M); //打印M
FastTransposeSMatrix(M,&T);
printf("转置矩阵如下:\n");
PrintMatrix(T); //打印T
}
6、粉丝数上50,下次加上流程图,创作不易,谢谢支持。
版权声明
本文为[osc_b9r67jnt]所创,转载请带上原文链接,感谢
https://my.oschina.net/u/4258260/blog/4710724
边栏推荐
- [paper reading notes] network embedding with attribute refinement
- CSDN BUG1: to be added
- 编码风格:Mvc模式下SSM环境,代码分层管理
- 为什么要谨慎使用Arrays.asList、ArrayList的subList?
- Problems and solutions in configuring FTP server with FileZilla server
- LeetCode 5561. 获取生成数组中的最大值
- [paper reading notes] large scale heterogeneous feature embedding
- GNU assembly basic mathematical equations multiplication
- layer.prompt(options, yes) - 输入层
- Filezilla server配置FTP服务器中的各种问题与解决方法
猜你喜欢
专业之旅——GitHub 热点速览 Vol.45
Oschina: my green plants are potatoes, ginger and garlic
mac终端Iterm2支持rz和sz的解决方案
Only options request is sent, no post solution is sent
[论文阅读笔记] RoSANE, Robust and scalable attributed network embedding for sparse networks
express -- 学习笔记(慕课)
csdn bug6:待加
Android quick shutdown app
[paper reading notes] network embedding with attribute refinement
jmeter接口测试--带有token的解决方法
随机推荐
csdn bug5:待加
Taulia推出国际支付条款数据库
上线1周,B.Protocal已有7000ETH资产!
CSDN bug8: to be added
用python猜测一个数字是集合里面哪些数字相加求和而来的
[technical course] peerconnection in webrtc self built by visual studio 2017_ The client program reported an external symbol error that LNK2019 could not resolve
express -- 学习笔记(慕课)
csdn bug10:待加
[论文阅读笔记] A Multilayered Informative Random Walk for Attributed Social Network Embedding
Harbor项目高手问答及赠书活动火热进行中
[leetcode] 93 balanced binary tree
ASP.NET Core框架揭秘[博文汇总
基于FPGA的MCP4725驱动程序
SEO界,值得收藏的10条金玉良言有哪些?
nodejs 个人学习笔记(imook)pm2
【iOS】苹果登录Sign in with Apple
What can I do if I can't register didi? How to deal with it?
《Python Cookbook 3rd》笔记(2.4):字符串匹配和搜索
设计 API 时通过 POST 获取数据需要注意哪些问题
[paper reading notes] network embedding with attribute refinement