1. 首页
  2. 跨平台
  3. Weex
  4. 数据结构c语言版 稀疏矩阵的三元组顺序表存储表示和实现.doc

数据结构c语言版 稀疏矩阵的三元组顺序表存储表示和实现.doc

上传者: 2020-12-12 10:40:45上传 DOC文件 81.5KB 热度 21次
. word范文 typedef int ElemType; // 稀疏矩阵的三元组顺序表存储表示 #define MAXSIZE 100 // 非零元个数的最大值 typedef struct { int i,j; // 行下标,列下标 ElemType e; // 非零元素值 }Triple; typedef struct { Triple data[MAXSIZE+1]; // 非零元三元
下载地址
用户评论