/* Copyright (c) 2003-2015 Tommi Junttila Released under the GNU Lesser General Public License version 3.
This file is part of bliss.
bliss is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, version 3 of the License.
bliss is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with bliss. If not, see <http://www.gnu.org/licenses/>.
*/
#include"defs.hh"
namespace bliss_digraphs {
/** \internal * \brief A very simple implementation of queues with fixed capacity.
*/
template <class Type> class KQueue
{ public: /** * Create a new queue with capacity zero. * The function init() should be called next.
*/ typedeftypename std::vector<Type>::iterator type_pointer_substitute;
KQueue();
~KQueue();
/** * Initialize the queue to have the capacity to hold at most \a N elements.
*/ void init(constunsignedint N);
/** Is the queue empty? */ bool is_empty() const;
/** Return the number of elements in the queue. */ unsignedint size() const;
/** Remove all the elements in the queue. */ void clear();
/** Return (but don't remove) the first element in the queue. */
Type front() const;
/** Remove and return the first element of the queue. */
Type pop_front();
/** Push the element \a e in the front of the queue. */ void push_front(Type e);
/** Remove and return the last element of the queue. */
Type pop_back();
/** Push the element \a e in the back of the queue. */ void push_back(Type e); private:
type_pointer_substitute entries, end;
type_pointer_substitute head, tail;
std::vector<Type> entries_vec;
};
template <class Type>
KQueue<Type>::KQueue()
{
}
template <class Type>
KQueue<Type>::~KQueue()
{
}
template <class Type> void KQueue<Type>::init(constunsignedint k)
{
assert(k > 0);
entries_vec.resize(k + 1);
entries = entries_vec.begin();
end = entries + k + 1;
head = entries;
tail = head;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.