1 #ifndef UTIL_ARRAY_STACK_H 2 #define UTIL_ARRAY_STACK_H 11 #include <util/misc/Memory.h> 24 template <
typename Data>
55 void push(Data& data);
88 const Data&
peek()
const;
125 template <
typename Data>
135 template <
typename Data>
139 Memory::deallocate<Data*>(ptrs_, capacity_);
146 template <
typename Data>
150 UTIL_THROW(
"Cannot allocate ArrayStack with capacity <= 0");
153 UTIL_THROW(
"Attempt to re-allocate an ArrayStack");
155 Memory::allocate<Data*>(ptrs_,
capacity);
160 for (
int i = 0; i < capacity_; ++i) {
168 template <
typename Data>
170 {
return capacity_; }
175 template <
typename Data>
182 template <
typename Data>
185 if (size_ == capacity_) {
186 UTIL_THROW(
"Attempt to push onto full stack");
188 ptrs_[size_] = &data;
195 template <
typename Data>
199 UTIL_THROW(
"Attempt to pop from empty stack");
201 Data *ptr = ptrs_[size_-1];
210 template <
typename Data>
212 {
return *ptrs_[size_-1]; }
217 template <
typename Data>
219 {
return *ptrs_[size_-1]; }
224 template <
typename Data>
233 if (size_ > capacity_) {
239 for (i = 0; i < size_ ; ++i) {
244 for (i = size_; i < capacity_ ; ++i) {
246 UTIL_THROW(
"Non-null ptrs_[i] for i >= size_");
250 if (capacity_ != 0) {
251 UTIL_THROW(
"Unallocated stack but capacity != 0");
260 template <
typename Data>
262 {
return (ptrs_ != 0); }
int capacity() const
Return capacity of the underlying array.
ArrayStack()
Default constructor.
virtual ~ArrayStack()
Destructor.
Data & peek()
Return a reference to the top element (don't pop).
bool isValid() const
Return true if the ArrayStack is valid, or throw an exception.
File containing preprocessor macros for error handling.
void push(Data &data)
Push an element onto the Stack.
int size() const
Get the number of elements in the stack.
Data & pop()
Pop an element off the stack.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Utility classes for scientific computation.
A stack of fixed capacity.
void allocate(int capacity)
Initialize and allocate required memory.
bool isAllocated() const
Return true only if the ArrayStack has been allocated.