source:
doc/papers/general/evaluation/cpp-vstack.cpp@
534d84e
| Last change on this file since 534d84e was ac4dad2, checked in by , 8 years ago | |
|---|---|
|
|
| File size: 945 bytes | |
| Rev | Line | |
|---|---|---|
| [604e76d] | 1 | #include "cpp-vstack.hpp" |
| 2 | #include <utility> | |
| 3 | ||
| [81e8ab0] | 4 | stack::node::node( const object & v, node * n ) : value( v.new_copy() ), next( n ) {} |
| [604e76d] | 5 | |
| [81e8ab0] | 6 | void stack::clear() { |
| [ac4dad2] | 7 | for ( node * nx = head; nx; ) { |
| 8 | node * cr = nx; | |
| 9 | nx = cr->next; | |
| 10 | delete cr; | |
| [81e8ab0] | 11 | } |
| 12 | head = nullptr; | |
| 13 | } | |
| 14 | ||
| [8b001bd] | 15 | void stack::copy( const stack & o ) { |
| [ac4dad2] | 16 | node ** cr = &head; |
| 17 | for ( node * nx = o.head; nx; nx = nx->next ) { | |
| 18 | *cr = new node{ *nx->value }; /***/ | |
| 19 | cr = &(*cr)->next; | |
| [604e76d] | 20 | } |
| [ac4dad2] | 21 | *cr = nullptr; |
| [604e76d] | 22 | } |
| 23 | ||
| [81e8ab0] | 24 | stack::stack() : head( nullptr ) {} |
| 25 | stack::stack( const stack & o ) { copy( o ); } | |
| [604e76d] | 26 | stack::~stack() { clear(); } |
| 27 | ||
| [81e8ab0] | 28 | stack & stack::operator=( const stack & o ) { |
| [604e76d] | 29 | if ( this == &o ) return *this; |
| 30 | clear(); | |
| [81e8ab0] | 31 | copy( o ); |
| [604e76d] | 32 | return *this; |
| 33 | } | |
| 34 | ||
| 35 | bool stack::empty() const { return head == nullptr; } | |
| 36 | ||
| [81e8ab0] | 37 | void stack::push( const object & value ) { head = new node{ value, head }; /***/ } |
| [604e76d] | 38 | |
| 39 | ptr<object> stack::pop() { | |
| [81e8ab0] | 40 | node * n = head; |
| [604e76d] | 41 | head = n->next; |
| [81e8ab0] | 42 | ptr<object> v = std::move( n->value ); |
| [604e76d] | 43 | delete n; |
| [81e8ab0] | 44 | return v; |
| [604e76d] | 45 | } |
Note:
See TracBrowser
for help on using the repository browser.