[SparsePoly.h]/*[심화문제] 희소 다항식을 위한 클래스 SparseMatrix를 구현하라 (1) 각 항을 나타내는 Term 클래스를 설계하고 구현해라(2) SparseMatrix 클래스를 설계하고 다음 멤버함수를 구현하라 i) void read(); //희소 다항식 입력 함수 ii) void add(SparsePoly a, SparsePoly b); //c.add(a, b)는 c=a+b iii)void display(char *str="SPoly = "); //희소다항식 출력 함수*/#include using namespace std; #define MAX_TERMS 20 struct Term //하나의 항을 표현하는 구조체{ int expn; //항의 지수 float coef; //항의 계..