queue< int > a;
a.push(x) (後ろに追加)
a.pop() (前を削除)
X = a.front() (前を習得)
a.size()
a.empty()
Go to list of users who liked
More than 1 year has passed since last update.
queue< int > a;
a.push(x) (後ろに追加)
a.pop() (前を削除)
X = a.front() (前を習得)
a.size()
a.empty()
Register as a new user and use Qiita more conveniently
Go to list of users who liked