原题链接:数据结构-稀疏矩阵快速转置 #include <stdio.h> #include <stdlib.h> #define maxsize 12500 typedef struct {int iu; int ju; int e; }triple; typedef struct {triple data[maxsize]; int m,n,ge; }table; int main() {int m,n,i,j,x,ge; int p,q,col,cpot[201]={0},num[...