数据结构与算法 ~ 数组和广义表 ~ 矩阵的相乘

数据结构与算法中数组和广义表的矩阵的相乘.算法 #include<stdlib.h> #include<stdio.h> #define MAX 10 struct elem{ int data;/*元素值*/ }; typedef struct elem Elem; struct matrix{ int row;/*行数*/ int col; /*列数*/ Elem array[M
相关文章
相关标签/搜索