queue<int> qu; // int型のキュー
qu.push( 10 );
int i = qu.front(); //先頭の値を得る qu.pop();
qu.empty();
qu.size();
タグ: