⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vector_sparse.hpp

📁 CGAL is a collaborative effort of several sites in Europe and Israel. The goal is to make the most i
💻 HPP
📖 第 1 页 / 共 5 页
字号:
        // Assignment        BOOST_UBLAS_INLINE        coordinate_vector &operator = (const coordinate_vector &v) {            if (this != &v) {                size_ = v.size_;                non_zeros_ = v.non_zeros_;                filled_ = v.filled_;                sorted_ = v.sorted_;                index_data () = v.index_data ();                value_data () = v.value_data ();                BOOST_UBLAS_CHECK (non_zeros_ == index_data ().size (), internal_logic ());                BOOST_UBLAS_CHECK (non_zeros_ == value_data ().size (), internal_logic ());            }            return *this;        }        BOOST_UBLAS_INLINE        coordinate_vector &assign_temporary (coordinate_vector &v) {            swap (v);            return *this;        }        template<class AE>        BOOST_UBLAS_INLINE        coordinate_vector &operator = (const vector_expression<AE> &ae) {            // return assign (self_type (ae, non_zeros_));            self_type temporary (ae, non_zeros_);            return assign_temporary (temporary);        }        template<class AE>        BOOST_UBLAS_INLINE        coordinate_vector &assign (const vector_expression<AE> &ae) {            vector_assign (scalar_assign<true_reference, BOOST_UBLAS_TYPENAME AE::value_type> (), *this, ae);            return *this;        }        template<class AE>        BOOST_UBLAS_INLINE        coordinate_vector &operator += (const vector_expression<AE> &ae) {            // return assign (self_type (*this + ae, non_zeros_));            self_type temporary (*this + ae, non_zeros_);            return assign_temporary (temporary);        }        template<class AE>        BOOST_UBLAS_INLINE        coordinate_vector &plus_assign (const vector_expression<AE> &ae) {            vector_assign (scalar_plus_assign<true_reference, BOOST_UBLAS_TYPENAME AE::value_type> (), *this, ae);            return *this;        }        template<class AE>        BOOST_UBLAS_INLINE        coordinate_vector &operator -= (const vector_expression<AE> &ae) {            // return assign (self_type (*this - ae, non_zeros_));            self_type temporary (*this - ae, non_zeros_);            return assign_temporary (temporary);        }        template<class AE>        BOOST_UBLAS_INLINE        coordinate_vector &minus_assign (const vector_expression<AE> &ae) {            vector_assign (scalar_minus_assign<true_reference, BOOST_UBLAS_TYPENAME AE::value_type> (), *this, ae);            return *this;        }        template<class AT>        BOOST_UBLAS_INLINE        coordinate_vector &operator *= (const AT &at) {            vector_assign_scalar (scalar_multiplies_assign<true_reference, AT> (), *this, at);            return *this;        }        template<class AT>        BOOST_UBLAS_INLINE        coordinate_vector &operator /= (const AT &at) {            vector_assign_scalar (scalar_divides_assign<true_reference, AT> (), *this, at);            return *this;        }        // Swapping        BOOST_UBLAS_INLINE        void swap (coordinate_vector &v) {            if (this != &v) {                std::swap (size_, v.size_);                std::swap (non_zeros_, v.non_zeros_);                std::swap (filled_, v.filled_);                std::swap (sorted_, v.sorted_);                index_data ().swap (v.index_data ());                value_data ().swap (v.value_data ());            }        }#ifndef BOOST_UBLAS_NO_MEMBER_FRIENDS        BOOST_UBLAS_INLINE        friend void swap (coordinate_vector &v1, coordinate_vector &v2) {            v1.swap (v2);        }#endif        // Sorting        BOOST_UBLAS_INLINE        void sort () const {            if (! sorted_ && filled_ > 0) {                index_pair_array<index_array_type, value_array_type>                    ipa (filled_, index_data_, value_data_);                std::sort (ipa.begin (), ipa.end ());                // ISSUE: unusual semantics - sum values of duplicates                size_type filled = 1;                for (size_type i = 1; i < filled_; ++ i) {                    if (index_data_ [filled - 1] != index_data_ [i]) {                        ++ filled;                        if (filled - 1 != i) {                            index_data_ [filled - 1] = index_data_ [i];                            value_data_ [filled - 1] = value_data_ [i];                        }                    } else {                        value_data_ [filled - 1] += value_data_ [i];                    }                }                filled_ = filled;                sorted_ = true;            }        }        // Element insertion and erasure        BOOST_UBLAS_INLINE        void push_back (size_type i, const_reference t) {            if (filled_ == 0 || index_data () [filled_ - 1] < k_based (i)) {                if (filled_ >= non_zeros_)                    reserve (2 * filled_, true);                BOOST_UBLAS_CHECK (filled_ < non_zeros_, internal_logic ());                index_data () [filled_] = k_based (i);                value_data () [filled_] = t;                ++ filled_;                return;            }            external_logic ().raise ();        }        BOOST_UBLAS_INLINE        void insert (size_type i, const_reference t) {            if (filled_ >= non_zeros_)                reserve (2 * filled_, true);            BOOST_UBLAS_CHECK (filled_ < non_zeros_, internal_logic ());            index_data () [filled_] = k_based (i);            value_data () [filled_] = t;            ++ filled_;            sorted_ = false;        }        BOOST_UBLAS_INLINE        void pop_back () {            BOOST_UBLAS_CHECK (filled_ > 0, external_logic ());            -- filled_;        }        BOOST_UBLAS_INLINE        void erase (size_type i) {            sort ();            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;        }        // Iterator types    private:        // Use index array iterator        typedef typename IA::const_iterator const_iterator_type;        typedef typename IA::iterator iterator_type;    public:        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 {            sort ();            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) {            sort ();            return iterator (*this, detail::lower_bound (index_data ().begin (), index_data ().begin () + filled_, k_based (i), std::less<size_type> ()));        }        class const_iterator:            public container_const_reference<coordinate_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 coordinate_vector::value_type value_type;            typedef typename coordinate_vector::difference_type difference_type;            typedef typename coordinate_vector::const_reference reference;            typedef const typename coordinate_vector::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            const_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 {                BOOST_UBLAS_CHECK (*this != (*this) ().end (), bad_index ());                BOOST_UBLAS_CHECK ((*this) ().zero_based (*it_) < (*this) ().size (), bad_index ());                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 {                BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());                return 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<coordinate_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 coordinate_vector::value_type value_type;            typedef typename coordinate_vector::difference_type difference_type;            typedef typename coordinate_vector::true_reference reference;            typedef typename coordinate_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 ());                return (*this) ().value_data () [it_ - (*this) ().index_data ().begin ()];            }            // Index            BOOST_UBLAS_INLINE            size_type index () const {                BOOST_UBLAS_CHECK (*this != (*this) ().end (), bad_index ());                BOOST_UBLAS_CHECK ((*this) ().zero_based (*it_) < (*this) ().size (), bad_index ());                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 {                BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());                return 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 reve

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -