#pragma once
//OperandStack.h : 피연산자 스택 클래스
#ifndef ___OperandStack
#define ___OperandStack
#include <cstdio>
#include <cstdlib>
const int MAX_STACK_SIZE = 20; //스택의 최대 크기 설정
//오류 처리 함수
inline void error(const char *message) {
printf("%s\n", message);
exit(1);
}
class OperandStack {
double data[MAX_STACK_SIZE]; //요소의 배열
int top; //요소의 개수
public:
OperandStack() { top = -1; } //스택 생성자
bool isEmpty() { return top == -1; }
bool isFull() { return top == MAX_STACK_SIZE - 1; }
void push(double e) { //맨 위에 항목 삽입
if (isFull()) error("스택 포화 에러");
data[++top] = e;
}
double pop() { //맨 위의 요소를 삭제하고 반환
if (isEmpty()) error("스택 공백 에러");
return data[top--];
}
};
#endif // !___OperandStack
'Programming > DS SorceCode' 카테고리의 다른 글
ArrayStack.h : 배열을 이용한 int 스택 클래스 (0) | 2019.03.22 |
---|---|
CircularQueue.h : 배열을 이용한 원형 큐 클래스 (0) | 2019.03.22 |
Location2D.h : 위치 정보를 나타내는 구조체 (0) | 2019.03.22 |
StudentStack.h : 학생정보 스택 클래스 (0) | 2019.03.22 |
Student.h : 학생 정보를 나타내는 클래스 (0) | 2019.03.22 |