|
it;
stack_pointer temp = (stack_pointer)malloc(sizeof(stack));
if(IS_FULL(temp))
{
printf(\"The memory is full.\\n\");
exit(1);
}
printf(\"PUSH DATA:: \");
scanf(\"%s\",&it);
temp->item = it;
temp->link= *top;
*top = temp;
}
void delete(stack_pointer *top)
{
stack_pointer temp = *top;
char di
|
- 페이지 5페이지
- 가격 900원
- 등록일 2005.12.09
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
));
printf(\"\\n\");
}
}
else if(w != v)
low[u] = low[u] < dfn[w] ? low[u] : dfn[w];
}
}
/*stack operation for bicon method*/
void adds(stack_pointer *top, int v1, int v2) {
stack_pointer temp = (stack_pointer)malloc(sizeof(stack));
if(IS_FULL(temp)) {
fprintf(stderr, \"The memory is full\\n\");
|
- 페이지 56페이지
- 가격 3,000원
- 등록일 2011.11.09
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
stack pointer)
5. 인터럽트 벡터 레지스터
6. CPU 타이밍
7. non-maskable 인터럽트
8. I / O 포트의 데이터 입출력
9. 인터럽트를 결정하는 명령어 모드
10. 인터럽트를 점검하는 방법 1. 마이크로 프로세서의 구성
2. F 플래그 레지스터
3. PSW(Program Statu
|
- 페이지 10페이지
- 가격 1,300원
- 등록일 2005.01.02
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
.....
2) stack: stack.h
typedef struct {
int x;
int y;
} data;
typedef struct stackNode{
data data;
stackNode* link;
} stackNode;
stackNode* top; //top pointer
void init()//initializing stack
bool isEmpty() // check if it is empty or not
void push(data td)
data pop()//
|
- 페이지 50페이지
- 가격 3,300원
- 등록일 2010.01.04
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
)
{
memory_overflow();
return;
}
temp -> data = x;
temp->LINK =top;
top = temp;
}
스택의 삭제
int pop( top)
STRUCT LINKLIST *top;
{
int x;
pointer temp;
temp = top;
if(IS_EMPTY(temp))
{
stack_empty();
return;
}
x = temp -> data;
top = temp -> link;
free(temp);
return x;
}
|
- 페이지 4페이지
- 가격 800원
- 등록일 2005.05.01
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|