[자료구조 Stack C++] 구현 #include #include "Stack_Implementing.h" using namespace std; // 값 추가하기 void Stack::Push(int data) { if (isEmpty()) // 데이터 추가가 가능하다면 { *(p_stack + stack_count) = data; stack_count++; } else { cout 알고리즘 2023.02.23