-2

给定一个 2 次多项式,如何使用双向链表在稀疏矩阵中实现它?

4

1 回答 1

0
typedef struct node{
   int term;
   int coefficient;
   struct node* next;
   struct node* previous;
}Node;

Node matrix[3];
于 2013-03-28T14:30:47.900 回答