stack

순후추·2023년 10월 25일
0

자료구조

목록 보기
1/5
post-thumbnail

stack (FILO)

코드로 직접 구현

const int MX = 1000005;
int dat[MX];
int pos = 0;

void push(int x) {
	dat[pos++] = x;
}

void pop() {
	pos--;
}

int top() {
	return dat[pos - 1];
}

stl stack

profile
게임 개발 블로그

0개의 댓글