📄 vector_sparse.hpp
字号:
compressed_vector &operator *= (const AT &at) {
vector_assign_scalar (scalar_multiplies_assign<reference, AT> (), *this, at);
return *this;
}
template<class AT>
BOOST_UBLAS_INLINE
compressed_vector &operator /= (const AT &at) {
vector_assign_scalar (scalar_divides_assign<reference, AT> (), *this, at);
return *this;
}
// Swapping
BOOST_UBLAS_INLINE
void swap (compressed_vector &v) {
// Too unusual semantic.
// BOOST_UBLAS_CHECK (this != &v, external_logic ());
if (this != &v) {
// Precondition for container relaxed as requested during review.
// BOOST_UBLAS_CHECK (size_ == v.size_, bad_size ());
// BOOST_UBLAS_CHECK (non_zeros_ == v.non_zeros_, bad_size ());
std::swap (size_, v.size_);
std::swap (non_zeros_, v.non_zeros_);
std::swap (filled_, v.filled_);
index_data ().swap (v.index_data ());
value_data ().swap (v.value_data ());
}
}
#ifndef BOOST_UBLAS_NO_MEMBER_FRIENDS
BOOST_UBLAS_INLINE
friend void swap (compressed_vector &v1, compressed_vector &v2) {
v1.swap (v2);
}
#endif
// Element insertion and erasure
BOOST_UBLAS_INLINE
void push_back (size_type i, const_reference t) {
if (filled_ >= non_zeros_)
reserve (2 * non_zeros_);
if (filled_ == 0 || index_data () [filled_ - 1] < k_based (i)) {
++ filled_;
index_data () [filled_ - 1] = k_based (i);
value_data () [filled_ - 1] = t;
return;
}
// Raising exceptions abstracted as requested during review.
// throw external_logic ();
external_logic ().raise ();
}
BOOST_UBLAS_INLINE
void insert (size_type i, const_reference t) {
if (filled_ >= non_zeros_)
reserve (2 * non_zeros_);
iterator_type it (detail::lower_bound (index_data ().begin (), index_data ().begin () + filled_, k_based (i), std::less<size_type> ()));
difference_type n = it - index_data ().begin ();
BOOST_UBLAS_CHECK (filled_ == 0 || filled_ == size_type (n) || *it != k_based (i), external_logic ());
++ filled_;
it = index_data ().begin () + n;
std::copy_backward (it, index_data ().begin () + filled_ - 1, index_data ().begin () + filled_);
*it = k_based (i);
typename value_array_type::iterator itt (value_data ().begin () + n);
std::copy_backward (itt, value_data ().begin () + filled_ - 1, value_data ().begin () + filled_);
*itt = t;
}
BOOST_UBLAS_INLINE
void pop_back () {
BOOST_UBLAS_CHECK (filled_ > 0, external_logic ());
-- filled_;
}
BOOST_UBLAS_INLINE
void erase (size_type i) {
iterator_type it (detail::lower_bound (index_data ().begin (), index_data ().begin () + filled_, k_based (i), std::less<size_type> ()));
difference_type n = it - index_data ().begin ();
if (filled_ > size_type (n) && *it == k_based (i)) {
std::copy (it + 1, index_data ().begin () + filled_, it);
typename value_array_type::iterator itt (value_data ().begin () + n);
std::copy (itt + 1, value_data ().begin () + filled_, itt);
-- filled_;
}
}
BOOST_UBLAS_INLINE
void clear () {
filled_ = 0;
}
class const_iterator;
class iterator;
// Element lookup
// This function seems to be big. So we do not let the compiler inline it.
// BOOST_UBLAS_INLINE
const_iterator find (size_type i) const {
return const_iterator (*this, detail::lower_bound (index_data ().begin (), index_data ().begin () + filled_, k_based (i), std::less<size_type> ()));
}
// This function seems to be big. So we do not let the compiler inline it.
// BOOST_UBLAS_INLINE
iterator find (size_type i) {
return iterator (*this, detail::lower_bound (index_data ().begin (), index_data ().begin () + filled_, k_based (i), std::less<size_type> ()));
}
// Iterators simply are pointers.
class const_iterator:
public container_const_reference<compressed_vector>,
public bidirectional_iterator_base<sparse_bidirectional_iterator_tag,
const_iterator, value_type> {
public:
typedef sparse_bidirectional_iterator_tag iterator_category;
#ifdef BOOST_MSVC_STD_ITERATOR
typedef const_reference reference;
#else
typedef typename compressed_vector::difference_type difference_type;
typedef typename compressed_vector::value_type value_type;
typedef typename compressed_vector::const_reference reference;
typedef typename compressed_vector::const_pointer pointer;
#endif
// Construction and destruction
BOOST_UBLAS_INLINE
const_iterator ():
container_const_reference<self_type> (), it_ () {}
BOOST_UBLAS_INLINE
const_iterator (const self_type &v, const const_iterator_type &it):
container_const_reference<self_type> (v), it_ (it) {}
#ifndef BOOST_UBLAS_QUALIFIED_TYPENAME
BOOST_UBLAS_INLINE
const_iterator (const iterator &it):
container_const_reference<self_type> (it ()), it_ (it.it_) {}
#else
BOOST_UBLAS_INLINE
const_iterator (const typename self_type::iterator &it):
container_const_reference<self_type> (it ()), it_ (it.it_) {}
#endif
// Arithmetic
BOOST_UBLAS_INLINE
const_iterator &operator ++ () {
++ it_;
return *this;
}
BOOST_UBLAS_INLINE
const_iterator &operator -- () {
-- it_;
return *this;
}
// Dereference
BOOST_UBLAS_INLINE
reference operator * () const {
BOOST_UBLAS_CHECK (index () < (*this) ().size (), bad_index ());
return (*this) ().value_data () [it_ - (*this) ().index_data ().begin ()];
}
// Index
BOOST_UBLAS_INLINE
size_type index () const {
return (*this) ().zero_based (*it_);
}
// Assignment
BOOST_UBLAS_INLINE
const_iterator &operator = (const const_iterator &it) {
container_const_reference<self_type>::assign (&it ());
it_ = it.it_;
return *this;
}
// Comparison
BOOST_UBLAS_INLINE
bool operator == (const const_iterator &it) const {
// FIXME: won't work with vector of vectors.
// BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
return &(*this) () == &it () && it_ == it.it_;
}
private:
const_iterator_type it_;
};
BOOST_UBLAS_INLINE
const_iterator begin () const {
return find (0);
}
BOOST_UBLAS_INLINE
const_iterator end () const {
return find (size_);
}
class iterator:
public container_reference<compressed_vector>,
public bidirectional_iterator_base<sparse_bidirectional_iterator_tag,
iterator, value_type> {
public:
typedef sparse_bidirectional_iterator_tag iterator_category;
#ifndef BOOST_MSVC_STD_ITERATOR
typedef typename compressed_vector::difference_type difference_type;
typedef typename compressed_vector::value_type value_type;
typedef typename compressed_vector::reference reference;
typedef typename compressed_vector::pointer pointer;
#endif
// Construction and destruction
BOOST_UBLAS_INLINE
iterator ():
container_reference<self_type> (), it_ () {}
BOOST_UBLAS_INLINE
iterator (self_type &v, const iterator_type &it):
container_reference<self_type> (v), it_ (it) {}
// Arithmetic
BOOST_UBLAS_INLINE
iterator &operator ++ () {
++ it_;
return *this;
}
BOOST_UBLAS_INLINE
iterator &operator -- () {
-- it_;
return *this;
}
// Dereference
BOOST_UBLAS_INLINE
reference operator * () const {
BOOST_UBLAS_CHECK (index () < (*this) ().size (), bad_index ());
#if ! defined (BOOST_UBLAS_STRICT_VECTOR_SPARSE)
return (*this) ().value_data () [it_ - (*this) ().index_data ().begin ()];
#else
return reference ((*this) (), &(*this) ().value_data () [it_ - (*this) ().index_data ().begin ()], index ());
#endif
}
// Index
BOOST_UBLAS_INLINE
size_type index () const {
return (*this) ().zero_based (*it_);
}
// Assignment
BOOST_UBLAS_INLINE
iterator &operator = (const iterator &it) {
container_reference<self_type>::assign (&it ());
it_ = it.it_;
return *this;
}
// Comparison
BOOST_UBLAS_INLINE
bool operator == (const iterator &it) const {
// FIXME: won't work with vector of vectors.
// BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
return &(*this) () == &it () && it_ == it.it_;
}
private:
iterator_type it_;
friend class const_iterator;
};
BOOST_UBLAS_INLINE
iterator begin () {
return find (0);
}
BOOST_UBLAS_INLINE
iterator end () {
return find (size_);
}
// Reverse iterator
#ifdef BOOST_MSVC_STD_ITERATOR
typedef reverse_iterator_base<const_iterator, value_type, const_reference> const_reverse_iterator;
#else
typedef reverse_iterator_base<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 ());
}
#ifdef BOOST_MSVC_STD_ITERATOR
typedef reverse_iterator_base<iterator, value_type, reference> reverse_iterator;
#else
typedef reverse_iterator_base<iterator> reverse_iterator;
#endif
BOOST_UBLAS_INLINE
reverse_iterator rbegin () {
return reverse_iterator (end ());
}
BOOST_UBLAS_INLINE
reverse_iterator rend () {
return reverse_iterator (begin ());
}
private:
BOOST_STATIC_CONSTANT (size_type, index_base_ = IB);
size_type size_;
size_type non_zeros_;
size_type filled_;
index_array_type index_data_;
value_array_type value_data_;
static value_type zero_;
BOOST_UBLAS_INLINE
static size_type zero_based (size_type k_based_index) {
return k_based_index - index_base_;
}
BOOST_UBLAS_INLINE
static size_type k_based (size_type zero_based_index) {
return zero_based_index + index_base_;
}
friend class iterator;
friend class const_iterator;
};
template<class T, std::size_t IB, class IA, class TA>
typename compressed_vector<T, IB, IA, TA>::value_type compressed_vector<T, IB, IA, TA>::zero_ =
compressed_vector<T, IB, IA, TA>::value_type ();
// Array based sparse vector class
// Thanks to Kresimir Fresl for extending this to cover different index bases.
template<class T, std::size_t IB, class IA, class TA>
class coordinate_vector:
public vector_expression<coordinate_vector<T, IB, IA, TA> > {
public:
#ifndef BOOST_UBLAS_NO_PROXY_SHORTCUTS
BOOST_UBLAS_USING vector_expression<coordinate_vector<T, IB, IA, TA> >::operator ();
#endif
typedef std::size_t size_type;
typedef std::ptrdiff_t difference_type;
typedef T value_type;
// typedef const T &const_reference;
typedef typename type_traits<T>::const_reference const_reference;
#ifndef BOOST_UBLAS_STRICT_VECTOR_SPARSE
typedef T &reference;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -