So I really struggled with this and even now I am not happy with my solution.
I have a set
that at least contains 0, and may contain other positive int
s. I need to find the first positive number not in the set
.
So writing a standard while
-loop to accomplish this is easy.
i = foo.begin();
while (i != prev(foo.end()) && *i + 1 == *next(i)){
++i;
}
cout << "First number that cannot be formed " << *i + 1 << endl;
But when I try to write an STL algorithm version of the loop I get something that fails like this loop:
auto i = foo.begin();
while (++i != prev(foo.end()) && *prev(i) + 1 == *i);
cout << "First number that cannot be formed " << *prev(i) + 1 << endl;
Both of these loops correctly yield 3 in the case of:
set<int> foo{0, 1, 2, 4};
But the second loop incorrectly yields 3 instead of 4 in this case:
set<int> foo{0, 1, 2, 3};
How can I write this using an STL algorithm and accomplish the behavior of the first loop?
EDIT:
After seeing some of the answers, I'd like to increase the difficulty. What I really want is something that doesn't require temporary variables and can be placed in a cout
statement.
The problem with your loop is that you stop one element too early. This works:
while (++i != foo.end() && *prev(i) + 1 == *i);
The difference to the first loop is the condition *prev(i) + 1 == *i)
instead of *i + 1 == *next(i)
; the range you check has to shift accordingly.
You could also use std::adjacent_find
:
auto i = std::adjacent_find(begin(s), end(s), [](int i, int j) { return i + 1 != j; });
if(i == s.end()) {
std::cout << *s.rbegin() + 1 << std::endl;
} else {
std::cout << *i + 1 << std::endl;
}
Response to the edit: A way to make it prettily inlineable is
std::cout << std::accumulate(begin(s), end(s), 0,
[](int last, int x) {
return last + 1 == x ? x : last;
}) + 1 << '\n';
...but this is less efficient because it does not short-circuit when it finds a gap. Another way that does short-circuit is
std::cout << *std::mismatch(begin (s),
prev(end (s)),
next(begin(s)),
[](int lhs, int rhs) {
return lhs + 1 == rhs;
}).first + 1 << '\n';