학점교류로 듣는 숙명여대 자료구조 day 2. 2021.12.23. 목 Polynomial ADT a sum of terms, ax^e(x:variable, a:coeffieicnet, e:exponent) array of terms (coefficient, exponent) 지수의 내림차순으로 정렬되어있다. 지수가 같은 항은 하나만 있다. operations of polynomial ADT method를 구현한다. -> 구현해보기 IsEmpty() Coef(poly, expon) Lead_Exp(poly) # 최고 차항 Attach(poly, expon) Remove(Poly, expon) SingleMultiply(poly, coef, expon) # 새로운 항을 곱하는 것이다. Add(poly1, ..