📄 storage.hpp
字号:
const_iterator, value_type> {
public:
#ifdef BOOST_MSVC_STD_ITERATOR
typedef const_reference reference;
#else
typedef range::difference_type difference_type;
typedef range::value_type value_type;
typedef range::const_reference reference;
typedef range::const_pointer pointer;
#endif
// Construction and destruction
BOOST_UBLAS_INLINE
const_iterator ():
container_const_reference<range> (), it_ () {}
BOOST_UBLAS_INLINE
const_iterator (const range &r, const const_iterator_type &it):
container_const_reference<range> (r), it_ (it) {}
// Arithmetic
BOOST_UBLAS_INLINE
const_iterator &operator ++ () {
++ it_;
return *this;
}
BOOST_UBLAS_INLINE
const_iterator &operator -- () {
-- it_;
return *this;
}
BOOST_UBLAS_INLINE
const_iterator &operator += (difference_type n) {
it_ += n;
return *this;
}
BOOST_UBLAS_INLINE
const_iterator &operator -= (difference_type n) {
it_ -= n;
return *this;
}
BOOST_UBLAS_INLINE
difference_type operator - (const const_iterator &it) const {
return it_ - it.it_;
}
// Dereference
BOOST_UBLAS_INLINE
reference operator * () const {
BOOST_UBLAS_CHECK ((*this) ().start () <= it_, bad_index ());
BOOST_UBLAS_CHECK (it_ < (*this) ().start () + (*this) ().size (), bad_index ());
return it_;
}
// Index
BOOST_UBLAS_INLINE
size_type index () const {
return it_ - (*this) ().start ();
}
// Assignment
BOOST_UBLAS_INLINE
const_iterator &operator = (const const_iterator &it) {
// Comeau recommends...
this->assign (&it ());
it_ = it.it_;
return *this;
}
// Comparison
BOOST_UBLAS_INLINE
bool operator == (const const_iterator &it) const {
BOOST_UBLAS_CHECK ((*this) () == it (), external_logic ());
return it_ == it.it_;
}
BOOST_UBLAS_INLINE
bool operator < (const const_iterator &it) const {
BOOST_UBLAS_CHECK ((*this) () == it (), external_logic ());
return it_ < it.it_;
}
private:
const_iterator_type it_;
};
#endif
BOOST_UBLAS_INLINE
const_iterator begin () const {
return const_iterator (*this, start_);
}
BOOST_UBLAS_INLINE
const_iterator end () const {
return const_iterator (*this, start_ + size_);
}
// Reverse iterator
#ifdef BOOST_MSVC_STD_ITERATOR
typedef std::reverse_iterator<const_iterator, value_type, const_reference> const_reverse_iterator;
#else
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
#endif
BOOST_UBLAS_INLINE
const_reverse_iterator rbegin () const {
return const_reverse_iterator (end ());
}
BOOST_UBLAS_INLINE
const_reverse_iterator rend () const {
return const_reverse_iterator (begin ());
}
BOOST_UBLAS_INLINE
range preprocess (size_type size) const {
if (*this != all ())
return *this;
return range (0, size);
}
static
BOOST_UBLAS_INLINE
range all () {
return range (0, size_type (-1));
}
private:
size_type start_;
size_type size_;
};
// Slice class
class slice {
public:
typedef std::size_t size_type;
typedef std::ptrdiff_t difference_type;
typedef difference_type value_type;
typedef value_type const_reference;
typedef const_reference reference;
typedef const difference_type *const_pointer;
typedef difference_type *pointer;
typedef difference_type const_iterator_type;
// Construction and destruction
BOOST_UBLAS_INLINE
slice ():
start_ (), stride_ (), size_ () {}
BOOST_UBLAS_INLINE
slice (size_type start, difference_type stride, size_type size):
start_ (start), stride_ (stride), size_ (size) {}
BOOST_UBLAS_INLINE
size_type start () const {
return start_;
}
BOOST_UBLAS_INLINE
difference_type stride () const {
return stride_;
}
BOOST_UBLAS_INLINE
size_type size () const {
return size_;
}
// Element access
BOOST_UBLAS_INLINE
const_reference operator () (size_type i) const {
BOOST_UBLAS_CHECK (i < size_, bad_index ());
return start_ + i * stride_;
}
// Composition
BOOST_UBLAS_INLINE
slice compose (const range &r) const {
BOOST_UBLAS_CHECK (r.start () + r.size () <= size_, bad_size ());
return slice (start_ + stride_ * r.start (), stride_, r.size ());
}
BOOST_UBLAS_INLINE
slice compose (const slice &s) const {
BOOST_UBLAS_CHECK (s.start_ + s.stride_ * (s.size_ - (s.size_ > 0)) <= size_, bad_size ());
return slice (start_ + stride_ * s.start_, stride_ * s.stride_, s.size_);
}
// Comparison
BOOST_UBLAS_INLINE
bool operator == (const slice &s) const {
return start_ == s.start_ && stride_ == s.stride_ && size_ == s.size_;
}
BOOST_UBLAS_INLINE
bool operator != (const slice &s) const {
return ! (*this == s);
}
// Iterator simply is a index.
#ifdef BOOST_UBLAS_USE_INDEXED_ITERATOR
typedef indexed_const_iterator<slice, std::random_access_iterator_tag> const_iterator;
#else
class const_iterator:
public container_const_reference<slice>,
public random_access_iterator_base<std::random_access_iterator_tag,
const_iterator, value_type> {
public:
#ifdef BOOST_MSVC_STD_ITERATOR
typedef const_reference reference;
#else
typedef slice::difference_type difference_type;
typedef slice::value_type value_type;
typedef slice::const_reference reference;
typedef slice::const_pointer pointer;
#endif
// Construction and destruction
BOOST_UBLAS_INLINE
const_iterator ():
container_const_reference<slice> (), it_ () {}
BOOST_UBLAS_INLINE
const_iterator (const slice &s, const const_iterator_type &it):
container_const_reference<slice> (s), it_ (it) {}
// Arithmetic
BOOST_UBLAS_INLINE
const_iterator &operator ++ () {
it_ += (*this) ().stride ();
return *this;
}
BOOST_UBLAS_INLINE
const_iterator &operator -- () {
it_ -= (*this) ().stride ();
return *this;
}
BOOST_UBLAS_INLINE
const_iterator &operator += (difference_type n) {
it_ += n * (*this) ().stride ();
return *this;
}
BOOST_UBLAS_INLINE
const_iterator &operator -= (difference_type n) {
it_ -= n * (*this) ().stride ();
return *this;
}
BOOST_UBLAS_INLINE
difference_type operator - (const const_iterator &it) const {
// Stationary slice must remain at start OR stride must be non zero
// Thanks to Michael Stevens for this extension.
BOOST_UBLAS_CHECK ((it_ == difference_type ((*this) ().start ()) && it.it_ == difference_type ((*this) ().start ())) ||
(*this) ().stride () != 0, divide_by_zero ());
return (*this) ().stride () != 0 ? (it_ - it.it_) / (*this) ().stride () : 0;
}
// Dereference
BOOST_UBLAS_INLINE
reference operator * () const {
// Stationary slice must remain at start OR index must remain within size
// Thanks to Michael Stevens for this extension.
BOOST_UBLAS_CHECK (((*this) ().stride () == 0 && it_ == difference_type ((*this) ().start ())) ||
index () < (*this) ().size (), bad_index ());
return it_;
}
// Index
BOOST_UBLAS_INLINE
size_type index () const {
// Stationary slice must remain at start OR stride must be non zero
// Thanks to Michael Stevens for this extension.
BOOST_UBLAS_CHECK (it_ == difference_type ((*this) ().start ()) ||
(*this) ().stride () != 0, divide_by_zero ());
return (*this) ().stride () != 0 ? (it_ - difference_type ((*this) ().start ())) / (*this) ().stride () : 0;
}
// Assignment
BOOST_UBLAS_INLINE
const_iterator &operator = (const const_iterator &it) {
// Comeau recommends...
this->assign (&it ());
it_ = it.it_;
return *this;
}
// Comparison
BOOST_UBLAS_INLINE
bool operator == (const const_iterator &it) const {
BOOST_UBLAS_CHECK ((*this) () == it (), external_logic ());
return it_ == it.it_;
}
BOOST_UBLAS_INLINE
bool operator < (const const_iterator &it) const {
BOOST_UBLAS_CHECK ((*this) () == it (), external_logic ());
return it_ < it.it_;
}
private:
const_iterator_type it_;
};
#endif
BOOST_UBLAS_INLINE
const_iterator begin () const {
return const_iterator (*this, start_);
}
BOOST_UBLAS_INLINE
const_iterator end () const {
return const_iterator (*this, start_ + stride_ * size_);
}
// Reverse iterator
#ifdef BOOST_MSVC_STD_ITERATOR
typedef std::reverse_iterator<const_iterator, value_type, const_reference> const_reverse_iterator;
#else
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
#endif
BOOST_UBLAS_INLINE
const_reverse_iterator rbegin () const {
return const_reverse_iterator (end ());
}
BOOST_UBLAS_INLINE
const_reverse_iterator rend () const {
return const_reverse_iterator (begin ());
}
BOOST_UBLAS_INLINE
slice preprocess (size_type size) const {
if (*this != all ())
return *this;
return slice (0, 1, size);
}
static
BOOST_UBLAS_INLINE
slice all () {
return slice (0, 1, size_type (-1));
}
private:
size_type start_;
difference_type stride_;
size_type size_;
};
// Indirect array class
template<class A>
class indirect_array {
public:
typedef A array_type;
typedef const A const_array_type;
typedef std::size_t size_type;
typedef std::ptrdiff_t difference_type;
typedef typename A::value_type value_type;
typedef typename A::const_reference const_reference;
typedef typename A::reference reference;
typedef typename A::const_pointer const_pointer;
typedef typename A::pointer pointer;
typedef difference_type const_iterator_type;
// Construction and destruction
BOOST_UBLAS_INLINE
indirect_array ():
size_ (), data_ () {}
BOOST_UBLAS_EXPLICIT BOOST_UBLAS_INLINE
indirect_array (size_type size):
size_ (size), data_ (size) {}
BOOST_UBLAS_INLINE
indirect_array (size_type size, const array_type &data):
size_ (size), data_ (data) {}
BOOST_UBLAS_INLINE
indirect_array (pointer start, pointer stop):
size_ (stop - start), data_ (stop - start) {
std::copy (start, stop, data_.begin ());
}
BOOST_UBLAS_INLINE
size_type size () const {
return size_;
}
BOOST_UBLAS_INLINE
const_array_type data () const {
return data_;
}
BOOST_UBLAS_INLINE
array_type data () {
return data_;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -