2013-03-27 11 views

回答

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

Node matrix[3];