Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement iterate algorithms #101

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions doc/algorithm.qbk
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,16 @@ Write a sequence of n increasing values to an output iterator
Raise a value to an integral power ([^constexpr] since C++14)
[endsect:power]

[section:iterate iterate ]
[*[^[link header.boost.algorithm.iterate_hpp iterate] ] ]
Store the result of a unary function to each element of a range. This is a generalization of iota.
[endsect:iterate]

[section:iterate iterate ]
[*[^[link header.boost.algorithm.iterate_hpp iterate] ] ]
Store the result of a unary function to n element of a range. This is a generalization of iota.
[endsect:iterate]

[endsect:misc_inner_algorithms]

[endsect:Misc]
Expand Down
89 changes: 89 additions & 0 deletions include/boost/algorithm/iterate.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
/*
Copyright (c) Jonathan Gopel 2022.

Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/

#ifndef BOOST_ALGORITHM_ITERATE_HPP
#define BOOST_ALGORITHM_ITERATE_HPP

#include <boost/config.hpp>
#include <boost/range/begin.hpp>
#include <boost/range/end.hpp>

#include <utility>

namespace boost {
namespace algorithm {

/// \fn iterate ( ForwardIterator first, ForwardIterator last, TInit init, UnaryOperation op )
/// \brief Fills a range by applying op to the previous result of op. The nth
/// element of the range is calculated by applying op to init n times. IE: The
/// 0th element is init, the 1st element is op(init), the 2nd element is
/// op(op(init)) and so on.
/// \return The final value of init
///
/// \param first The start of the input range
/// \param last The end of the input range
/// \param init The initial value of the output range
/// \param op The function to apply to generate subsequent elements of the
/// range. Note that the input type and output type of this
/// function must be TInit.
template <class ForwardIterator, class TInit, class UnaryOperation>
BOOST_CXX14_CONSTEXPR TInit iterate(ForwardIterator first, ForwardIterator last,
TInit init,
UnaryOperation op) // TODO: BOOST_NOEXCEPT?
{
for (; first != last; (void)++first, init = op(init)) {
*first = init;
}
return init;
}

/// \fn iterate ( Range& r, TInit init, UnaryOperation op )
/// \brief Fills a range by applying op to the previous result of op. The nth
/// element of the range is calculated by applying op to init n times. IE: The
/// 0th element is init, the 1st element is op(init), the 2nd element is
/// op(op(init)) and so on.
/// \return The final value of init
///
/// \param first The start of the input range
/// \param last The end of the input range
/// \param init The initial value of the output range
/// \param op The function to apply to generate subsequent elements of the
/// range. Note that the input type and output type of this
/// function must be TInit.
template <class Range, class TInit, class UnaryOperation>
BOOST_CXX14_CONSTEXPR TInit iterate(Range &r, TInit init, UnaryOperation op) {
return iterate(boost::begin(r), boost::end(r), init, op);
}

/// \fn iterate ( ForwardIterator first, Size n, TInit init, UnaryOperation op )
/// \brief Fills n elements of a range by applying op to the previous result
/// of op. The nth element of the range is calculated by applying op to init
/// n times. IE: The 0th element is init, the 1st element is op(init), the 2nd
/// element is op(op(init)) and so on.
/// \return The updated output iterator and the final value of init
///
/// \param first The start of the input range
/// \param n The number of elements to fill
/// \param init The initial value of the output range
/// \param op The function to apply to generate subsequent elements of the
/// range. Note that the input type and output type of this
/// function must be TInit.
template <class OutputIterator, class Size, class TInit, class UnaryOperation>
BOOST_CXX14_CONSTEXPR std::pair<OutputIterator, TInit>
iterate(OutputIterator first, Size n, TInit init,
UnaryOperation op) // TODO: BOOST_NOEXCEPT?
{
for (; n > 0; --n, (void)++first, init = op(init)) {
*first = init;
}
return std::make_pair(first, init);
}

} // namespace algorithm
} // namespace boost

#endif // BOOST_ALGORITHM_ITERATE_HPP
8 changes: 5 additions & 3 deletions test/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ alias unit_test_framework

[ run ordered_test.cpp unit_test_framework : : : : ordered_test ]
[ run find_if_not_test1.cpp unit_test_framework : : : : find_if_not_test1 ]
[ run copy_if_test1.cpp unit_test_framework : : : : copy_if_test1 ]
[ run copy_n_test1.cpp unit_test_framework : : : : copy_n_test1 ]
[ run copy_if_test1.cpp unit_test_framework : : : : copy_if_test1 ]
[ run copy_n_test1.cpp unit_test_framework : : : : copy_n_test1 ]
[ run iota_test1.cpp unit_test_framework : : : : iota_test1 ]

[ run is_permutation_test1.cpp unit_test_framework : : : : is_permutation_test1 ]
Expand Down Expand Up @@ -88,8 +88,10 @@ alias unit_test_framework
# Apply_permutation tests
[ run apply_permutation_test.cpp unit_test_framework : : : : apply_permutation_test ]
# Find tests
[ run find_not_test.cpp unit_test_framework : : : : find_not_test ]
[ run find_not_test.cpp unit_test_framework : : : : find_not_test ]
[ run find_backward_test.cpp unit_test_framework : : : : find_backward_test ]
# Iterate tests
[ run iterate_test.cpp unit_test_framework : : : : iterate_test ]
;
}

160 changes: 160 additions & 0 deletions test/iterate_test.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,160 @@
/*
Copyright (c) Jonathan Gopel 2022.

Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/

#include <boost/algorithm/iterate.hpp>

#include "iterator_test.hpp"

#include <boost/config.hpp>

#define BOOST_TEST_MAIN
#include <boost/test/unit_test.hpp>

#include <boost/algorithm/cxx14/equal.hpp>

#include <algorithm>
#include <array>
#include <functional>
#include <vector>

typedef int data_t;

static const int NUM_ELEMENTS = 4;

BOOST_CONSTEXPR data_t add_one(const data_t value) { return value + 1; }

BOOST_CONSTEXPR data_t add_two(const data_t value) { return value + 2; }

void test_iterate() {
{ // iota
std::vector<data_t> actual(NUM_ELEMENTS);

boost::algorithm::iterate(actual.begin(), actual.end(), 15, add_one);

std::vector<data_t> expected(NUM_ELEMENTS);
expected.at(0) = 15;
expected.at(1) = 16;
expected.at(2) = 17;
expected.at(3) = 18;
BOOST_CHECK(actual.size() == expected.size());
BOOST_CHECK(std::equal(actual.begin(), actual.end(), expected.begin()));
}
{ // striding
std::vector<data_t> actual(NUM_ELEMENTS);

boost::algorithm::iterate(actual.begin(), actual.end(), 15, add_two);

std::vector<data_t> expected(NUM_ELEMENTS);
expected.at(0) = 15;
expected.at(1) = 17;
expected.at(2) = 19;
expected.at(3) = 21;
BOOST_CHECK(std::equal(actual.begin(), actual.end(), expected.begin()));
}
}

void test_iterate_range() {
{ // iota
std::vector<data_t> actual(NUM_ELEMENTS);

boost::algorithm::iterate(actual, 15, add_one);

std::vector<data_t> expected(NUM_ELEMENTS);
expected.at(0) = 15;
expected.at(1) = 16;
expected.at(2) = 17;
expected.at(3) = 18;
BOOST_CHECK(actual.size() == expected.size());
BOOST_CHECK(std::equal(actual.begin(), actual.end(), expected.begin()));
}
{ // striding
std::vector<data_t> actual(NUM_ELEMENTS);

boost::algorithm::iterate(actual, 15, add_two);

std::vector<data_t> expected(NUM_ELEMENTS);
expected.at(0) = 15;
expected.at(1) = 17;
expected.at(2) = 19;
expected.at(3) = 21;
BOOST_CHECK(std::equal(actual.begin(), actual.end(), expected.begin()));
}
}

void test_iterate_n() {
{ // iota
std::vector<data_t> actual(NUM_ELEMENTS);

boost::algorithm::iterate(actual.begin(), actual.size(), 15, add_one);

std::vector<data_t> expected(NUM_ELEMENTS);
expected.at(0) = 15;
expected.at(1) = 16;
expected.at(2) = 17;
expected.at(3) = 18;
BOOST_CHECK(actual.size() == expected.size());
BOOST_CHECK(std::equal(actual.begin(), actual.end(), expected.begin()));
}
{ // striding
std::vector<data_t> actual(NUM_ELEMENTS);

boost::algorithm::iterate(actual.begin(), actual.size(), 15, add_two);

std::vector<data_t> expected(NUM_ELEMENTS);
expected.at(0) = 15;
expected.at(1) = 17;
expected.at(2) = 19;
expected.at(3) = 21;
BOOST_CHECK(actual.size() == expected.size());
BOOST_CHECK(std::equal(actual.begin(), actual.end(), expected.begin()));
}
}

BOOST_CXX14_CONSTEXPR inline bool constexpr_test_iterate() {
int actual[] = {0, 0, 0, 0};

boost::algorithm::iterate(input_iterator<int *>(actual),
input_iterator<int *>(actual + NUM_ELEMENTS), 15,
add_one);

int expected[] = {15, 16, 17, 18};
return boost::algorithm::equal(
input_iterator<int *>(actual),
input_iterator<int *>(actual + NUM_ELEMENTS),
input_iterator<int *>(expected),
input_iterator<int *>(expected + NUM_ELEMENTS));
}

BOOST_CXX14_CONSTEXPR inline bool constexpr_test_iterate_n() {
int actual[] = {0, 0, 0, 0};

boost::algorithm::iterate(input_iterator<int *>(actual), NUM_ELEMENTS, 15,
add_one);

int expected[] = {15, 16, 17, 18};
return boost::algorithm::equal(
input_iterator<int *>(actual),
input_iterator<int *>(actual + NUM_ELEMENTS),
input_iterator<int *>(expected),
input_iterator<int *>(expected + NUM_ELEMENTS));
}

BOOST_AUTO_TEST_CASE(test_main) {
test_iterate();
test_iterate_range();
test_iterate_n();

{
BOOST_CXX14_CONSTEXPR bool result = constexpr_test_iterate();
BOOST_CHECK(result);
}

{
BOOST_CXX14_CONSTEXPR bool result = constexpr_test_iterate_n();
BOOST_CHECK(result);
}
}