C++コンテナ std::stack - Qiita
#std::stackC++コンテナのうちの一つ.データを積み重ねるイメージで末尾挿入、末尾削除を行うことができる.##push()関数stack<int> s;s.push(0);s.p…