first commit
This commit is contained in:
93
extern/ustl/1.5/umultiset.h
vendored
Normal file
93
extern/ustl/1.5/umultiset.h
vendored
Normal file
@@ -0,0 +1,93 @@
|
||||
// This file is part of the uSTL library, an STL implementation.
|
||||
//
|
||||
// Copyright (c) 2005 by Mike Sharov <msharov@users.sourceforge.net>
|
||||
// This file is free software, distributed under the MIT License.
|
||||
|
||||
#ifndef UMULTISET_H_446AEDBB7F61C6994DC228C25D5FA3A1
|
||||
#define UMULTISET_H_446AEDBB7F61C6994DC228C25D5FA3A1
|
||||
|
||||
#include "uvector.h"
|
||||
#include "ualgo.h"
|
||||
|
||||
namespace ustl {
|
||||
|
||||
/// \class multiset umultiset.h ustl.h
|
||||
/// \ingroup AssociativeContainers
|
||||
///
|
||||
/// \brief Multiple sorted container.
|
||||
/// Unlike set, it may contain multiple copies of each element.
|
||||
///
|
||||
template <typename T, typename Comp = less<T> >
|
||||
class multiset : public vector<T> {
|
||||
public:
|
||||
typedef const multiset<T,Comp>& rcself_t;
|
||||
typedef vector<T> base_class;
|
||||
typedef typename base_class::value_type value_type;
|
||||
typedef typename base_class::size_type size_type;
|
||||
typedef typename base_class::pointer pointer;
|
||||
typedef typename base_class::const_pointer const_pointer;
|
||||
typedef typename base_class::reference reference;
|
||||
typedef typename base_class::const_reference const_reference;
|
||||
typedef typename base_class::const_iterator const_iterator;
|
||||
typedef typename base_class::iterator iterator;
|
||||
typedef typename base_class::reverse_iterator reverse_iterator;
|
||||
typedef typename base_class::const_reverse_iterator const_reverse_iterator;
|
||||
public:
|
||||
inline multiset (void) : base_class() {}
|
||||
explicit inline multiset (size_type n) : base_class (n) {}
|
||||
inline multiset (rcself_t v) : base_class (v) {}
|
||||
inline multiset (const_iterator i1, const_iterator i2) : base_class() { insert (i1, i2); }
|
||||
inline rcself_t operator= (rcself_t v) { base_class::operator= (v); return (*this); }
|
||||
inline size_type size (void) const { return (base_class::size()); }
|
||||
inline iterator begin (void) { return (base_class::begin()); }
|
||||
inline const_iterator begin (void) const { return (base_class::begin()); }
|
||||
inline iterator end (void) { return (base_class::end()); }
|
||||
inline const_iterator end (void) const { return (base_class::end()); }
|
||||
inline void assign (const_iterator i1, const_iterator i2) { clear(); insert (i1, i2); }
|
||||
size_type count (const_reference v) const;
|
||||
inline void push_back (const_reference v) { insert (v); }
|
||||
inline iterator insert (const_reference v);
|
||||
void insert (const_iterator i1, const_iterator i2);
|
||||
void erase (const_reference v);
|
||||
inline iterator erase (iterator ep) { return (base_class::erase (ep)); }
|
||||
inline iterator erase (iterator ep1, iterator ep2) { return (base_class::erase (ep1, ep2)); }
|
||||
inline void clear (void) { base_class::clear(); }
|
||||
};
|
||||
|
||||
/// Returns the number of elements of value \p v.
|
||||
template <typename T, typename Comp>
|
||||
typename multiset<T,Comp>::size_type multiset<T,Comp>::count (const_reference v) const
|
||||
{
|
||||
const pair<const_iterator,const_iterator> fr = equal_range (begin(), end(), v, Comp());
|
||||
return (distance (fr.first, fr.second));
|
||||
}
|
||||
|
||||
/// Inserts \p v.
|
||||
template <typename T, typename Comp>
|
||||
inline typename multiset<T,Comp>::iterator multiset<T,Comp>::insert (const_reference v)
|
||||
{
|
||||
iterator ip = upper_bound (begin(), end(), v, Comp());
|
||||
return (base_class::insert (ip, v));
|
||||
}
|
||||
|
||||
/// Inserts all elements from range [i1,i2).
|
||||
template <typename T, typename Comp>
|
||||
void multiset<T,Comp>::insert (const_iterator i1, const_iterator i2)
|
||||
{
|
||||
assert (i1 <= i2);
|
||||
base_class::reserve (size() + distance (i1, i2));
|
||||
for (; i1 < i2; ++i1)
|
||||
push_back (*i1);
|
||||
}
|
||||
|
||||
/// Erases all elements with value \p v.
|
||||
template <typename T, typename Comp>
|
||||
void multiset<T,Comp>::erase (const_reference v)
|
||||
{
|
||||
pair<iterator,iterator> epr = equal_range (begin(), end(), v, Comp());
|
||||
erase (epr.first, epr.second);
|
||||
}
|
||||
|
||||
} // namespace ustl
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user