#ifndef UTIL_JOINT_SORT_H #define UTIL_JOINT_SORT_H /* A terrifying amount of C++ to coax std::sort into soring one range while * also permuting another range the same way. */ #include "proxy_iterator.hh" #include #include namespace util { namespace detail { template class JointProxy; template class JointIter { public: JointIter() {} JointIter(const KeyIter &key_iter, const ValueIter &value_iter) : key_(key_iter), value_(value_iter) {} bool operator==(const JointIter &other) const { return key_ == other.key_; } bool operator<(const JointIter &other) const { return (key_ < other.key_); } std::ptrdiff_t operator-(const JointIter &other) const { return key_ - other.key_; } JointIter &operator+=(std::ptrdiff_t amount) { key_ += amount; value_ += amount; return *this; } friend void swap(JointIter &first, JointIter &second) { using std::swap; swap(first.key_, second.key_); swap(first.value_, second.value_); } void DeepSwap(JointIter &other) { using std::swap; swap(*key_, *other.key_); swap(*value_, *other.value_); } private: friend class JointProxy; KeyIter key_; ValueIter value_; }; template class JointProxy { private: typedef JointIter InnerIterator; public: typedef struct { typename std::iterator_traits::value_type key; typename std::iterator_traits::value_type value; const typename std::iterator_traits::value_type &GetKey() const { return key; } } value_type; JointProxy(const KeyIter &key_iter, const ValueIter &value_iter) : inner_(key_iter, value_iter) {} JointProxy(const JointProxy &other) : inner_(other.inner_) {} operator value_type() const { value_type ret; ret.key = *inner_.key_; ret.value = *inner_.value_; return ret; } JointProxy &operator=(const JointProxy &other) { *inner_.key_ = *other.inner_.key_; *inner_.value_ = *other.inner_.value_; return *this; } JointProxy &operator=(const value_type &other) { *inner_.key_ = other.key; *inner_.value_ = other.value; return *this; } typename std::iterator_traits::reference GetKey() const { return *(inner_.key_); } friend void swap(JointProxy first, JointProxy second) { first.Inner().DeepSwap(second.Inner()); } private: friend class ProxyIterator >; InnerIterator &Inner() { return inner_; } const InnerIterator &Inner() const { return inner_; } InnerIterator inner_; }; template class LessWrapper : public std::binary_function { public: explicit LessWrapper(const Less &less) : less_(less) {} bool operator()(const Proxy &left, const Proxy &right) const { return less_(left.GetKey(), right.GetKey()); } bool operator()(const Proxy &left, const typename Proxy::value_type &right) const { return less_(left.GetKey(), right.GetKey()); } bool operator()(const typename Proxy::value_type &left, const Proxy &right) const { return less_(left.GetKey(), right.GetKey()); } bool operator()(const typename Proxy::value_type &left, const typename Proxy::value_type &right) const { return less_(left.GetKey(), right.GetKey()); } private: const Less less_; }; } // namespace detail template class PairedIterator : public ProxyIterator > { public: PairedIterator(const KeyIter &key, const ValueIter &value) : ProxyIterator >(detail::JointProxy(key, value)) {} }; template void JointSort(const KeyIter &key_begin, const KeyIter &key_end, const ValueIter &value_begin, const Less &less) { ProxyIterator > full_begin(detail::JointProxy(key_begin, value_begin)); detail::LessWrapper, Less> less_wrap(less); std::sort(full_begin, full_begin + (key_end - key_begin), less_wrap); } template void JointSort(const KeyIter &key_begin, const KeyIter &key_end, const ValueIter &value_begin) { JointSort(key_begin, key_end, value_begin, std::less::value_type>()); } } // namespace util #endif // UTIL_JOINT_SORT_H