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];