已知两个稀疏矩阵A和B采用三元组顺序表存储, 求:M= A+B、M= A-B和M= A×B。 【测试数据】 A的三元组表为: (0, 2, -9)(0, 4, 5)(1, 0, -7)(1, 2, 7)(3, 1, 8)(4, 2, 9) B的三元组表为: (1, 0, 7)(1, 2, 7)(2, 1, 1)(3, 0, 1)(4, 4, 1) 和: 差: 积: #include <iostream> #define M 5 #define N 5 #define MAXSIZE 25 using namespace std; typedef struct Tu...