|
#include
#include
#define MAX_TERM 100 // 항의 개수.
#define MAX_MULTI_TERM 10000 // 곱한 항의 개수 MAX_TERM * MAX_TERM
#define COMPARE(A,B) ( ( A < B ) ? -1 : ( A == B ) ? 0 : 1 )
typedef struct polynomaial
{
float coef;
int expon;
}poly;
poly terms[MAX_TERM];
int avail = 0;
|
- 페이지 5페이지
- 가격 1,500원
- 등록일 2007.07.16
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
pmult(pointer first, pointer second)
{
pointer startfirst, startsecond, temp;
pointer resulta, resultc, lasta, lastc;
startfirst = first->link;
startsecond = second->link;
resulta = (pointer)malloc(sizeof(node));
if(IS_FULL(resulta))
{
fprintf(stderr, "The memory is full\n");
exit(2);
}
result
|
- 페이지 14페이지
- 가격 2,000원
- 등록일 2011.10.16
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
pmult(pointer first, pointer second)
{
pointer startfirst, startsecond, temp;
pointer resulta, resultc, lasta, lastc;
startfirst = first->link;
startsecond = second->link;
resulta = (pointer)malloc(sizeof(node));
if(IS_FULL(resulta))
{
fprintf(stderr, "The memory is full\n");
exit(2);
}
result
|
- 페이지 14페이지
- 가격 2,000원
- 등록일 2011.10.31
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|