Update contrib.
1 // (C) Copyright Jeremy Siek 2001.
2 // Distributed under the Boost Software License, Version 1.0. (See accompany-
3 // ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8 * Hewlett-Packard Company
10 * Permission to use, copy, modify, distribute and sell this software
11 * and its documentation for any purpose is hereby granted without fee,
12 * provided that the above copyright notice appear in all copies and
13 * that both that copyright notice and this permission notice appear
14 * in supporting documentation. Hewlett-Packard Company makes no
15 * representations about the suitability of this software for any
16 * purpose. It is provided "as is" without express or implied warranty.
20 * Silicon Graphics Computer Systems, Inc.
22 * Permission to use, copy, modify, distribute and sell this software
23 * and its documentation for any purpose is hereby granted without fee,
24 * provided that the above copyright notice appear in all copies and
25 * that both that copyright notice and this permission notice appear
26 * in supporting documentation. Silicon Graphics makes no
27 * representations about the suitability of this software for any
28 * purpose. It is provided "as is" without express or implied warranty.
31 #ifndef BOOST_ALGORITHM_HPP
32 # define BOOST_ALGORITHM_HPP
33 # include <boost/detail/iterator.hpp>
34 // Algorithms on sequences
36 // The functions in this file have not yet gone through formal
37 // review, and are subject to change. This is a work in progress.
38 // They have been checked into the detail directory because
39 // there are some graph algorithms that use these functions.
46 template <typename Iter1, typename Iter2>
47 Iter1 begin(const std::pair<Iter1, Iter2>& p) { return p.first; }
49 template <typename Iter1, typename Iter2>
50 Iter2 end(const std::pair<Iter1, Iter2>& p) { return p.second; }
52 template <typename Iter1, typename Iter2>
53 typename boost::detail::iterator_traits<Iter1>::difference_type
54 size(const std::pair<Iter1, Iter2>& p) {
55 return std::distance(p.first, p.second);
59 // These seem to interfere with the std::pair overloads :(
60 template <typename Container>
61 typename Container::iterator
62 begin(Container& c) { return c.begin(); }
64 template <typename Container>
65 typename Container::const_iterator
66 begin(const Container& c) { return c.begin(); }
68 template <typename Container>
69 typename Container::iterator
70 end(Container& c) { return c.end(); }
72 template <typename Container>
73 typename Container::const_iterator
74 end(const Container& c) { return c.end(); }
76 template <typename Container>
77 typename Container::size_type
78 size(const Container& c) { return c.size(); }
81 typename std::vector<T>::iterator
82 begin(std::vector<T>& c) { return c.begin(); }
85 typename std::vector<T>::const_iterator
86 begin(const std::vector<T>& c) { return c.begin(); }
89 typename std::vector<T>::iterator
90 end(std::vector<T>& c) { return c.end(); }
93 typename std::vector<T>::const_iterator
94 end(const std::vector<T>& c) { return c.end(); }
97 typename std::vector<T>::size_type
98 size(const std::vector<T>& c) { return c.size(); }
101 template <class ForwardIterator, class T>
102 void iota(ForwardIterator first, ForwardIterator last, T value)
104 for (; first != last; ++first, ++value)
107 template <typename Container, typename T>
108 void iota(Container& c, const T& value)
110 iota(begin(c), end(c), value);
113 // Also do version with 2nd container?
114 template <typename Container, typename OutIter>
115 OutIter copy(const Container& c, OutIter result) {
116 return std::copy(begin(c), end(c), result);
119 template <typename Container1, typename Container2>
120 bool equal(const Container1& c1, const Container2& c2)
122 if (size(c1) != size(c2))
124 return std::equal(begin(c1), end(c1), begin(c2));
127 template <typename Container>
128 void sort(Container& c) { std::sort(begin(c), end(c)); }
130 template <typename Container, typename Predicate>
131 void sort(Container& c, const Predicate& p) {
132 std::sort(begin(c), end(c), p);
135 template <typename Container>
136 void stable_sort(Container& c) { std::stable_sort(begin(c), end(c)); }
138 template <typename Container, typename Predicate>
139 void stable_sort(Container& c, const Predicate& p) {
140 std::stable_sort(begin(c), end(c), p);
143 template <typename InputIterator, typename Predicate>
144 bool any_if(InputIterator first, InputIterator last, Predicate p)
146 return std::find_if(first, last, p) != last;
148 template <typename Container, typename Predicate>
149 bool any_if(const Container& c, Predicate p)
151 return any_if(begin(c), end(c), p);
154 template <typename InputIterator, typename T>
155 bool contains(InputIterator first, InputIterator last, T value)
157 return std::find(first, last, value) != last;
159 template <typename Container, typename T>
160 bool contains(const Container& c, const T& value)
162 return contains(begin(c), end(c), value);
165 template <typename InputIterator, typename Predicate>
166 bool all(InputIterator first, InputIterator last, Predicate p)
168 for (; first != last; ++first)
173 template <typename Container, typename Predicate>
174 bool all(const Container& c, Predicate p)
176 return all(begin(c), end(c), p);
179 template <typename Container, typename T>
180 std::size_t count(const Container& c, const T& value)
182 return std::count(begin(c), end(c), value);
185 template <typename Container, typename Predicate>
186 std::size_t count_if(const Container& c, Predicate p)
188 return std::count_if(begin(c), end(c), p);
191 template <typename ForwardIterator>
192 bool is_sorted(ForwardIterator first, ForwardIterator last)
197 ForwardIterator next = first;
198 for (++next; next != last; first = next, ++next) {
206 template <typename ForwardIterator, typename StrictWeakOrdering>
207 bool is_sorted(ForwardIterator first, ForwardIterator last,
208 StrictWeakOrdering comp)
213 ForwardIterator next = first;
214 for (++next; next != last; first = next, ++next) {
215 if (comp(*next, *first))
222 template <typename Container>
223 bool is_sorted(const Container& c)
225 return is_sorted(begin(c), end(c));
228 template <typename Container, typename StrictWeakOrdering>
229 bool is_sorted(const Container& c, StrictWeakOrdering comp)
231 return is_sorted(begin(c), end(c), comp);
236 #endif // BOOST_ALGORITHM_HPP