渣渣記錄稀疏矩陣轉置遇到的一個小問題

最近兩週寫了一個作業,用c語言寫出稀疏矩陣轉置的完整代碼,稀疏矩陣使用三元組表作存儲結構。 相關僞碼依據嚴蔚敏《數據結構》。 #include <stdio.h> #include <stdlib.h> #define MAXSIZE 12500 typedef struct { int i, j; //非零元的行下標和列下標 int e; }Triple; ty
相關文章
相關標籤/搜索