自己做的!心血!!! #include using namespace std; #define TURE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #define OVERFLOW -2 typedef int status; typedef struct term { float coef; int expn; term *next; }term,*Link; typedef struct { Lin