數據結構與算法 ~ 數組和廣義表 ~ 矩陣的相乘

數據結構與算法中數組和廣義表的矩陣的相乘.算法 #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
相關文章
相關標籤/搜索