Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
给定一个 2 次多项式,如何使用双向链表在稀疏矩阵中实现它?
typedef struct node{ int term; int coefficient; struct node* next; struct node* previous; }Node; Node matrix[3];