473,508 Members | 2,360 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

About the find() is STL algorithm

Hi All,

Just a thought, about the find() algorithm in the C++ STL. I read that
the find algorithm can take a range of iterators. If it does not find
the element it is looking for in that range it returns the iterator to
the last element in the range, not to the last element in the
container, to the last element in the range. That being said, how can
we tell if find() has been successful in finding the element we need?
Its easy when we are searching the whole container, we can always the
container's end() method, but when we are searching only a subset of
all the elements in a container, what then? Do we have a better way
than checking the element that find returns again?(sounds inefficient,
repetitive).

Would appreciate your thoughts on this matter.

Thanks, Draw

Jun 10 '06 #1
5 2557
* Draw:

Just a thought, about the find() algorithm in the C++ STL. I read that
the find algorithm can take a range of iterators. If it does not find
the element it is looking for in that range it returns the iterator to
the last element in the range, not to the last element in the
container, to the last element in the range.


A range of elements is specified as an iterator A to the first element,
and an iterator B one past the last element.

If std::find fails it returns B, in all cases.

Compare the result iterator to B.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jun 10 '06 #2
Alf P. Steinbach wrote:
* Draw:

Just a thought, about the find() algorithm in the C++ STL. I read that
the find algorithm can take a range of iterators. If it does not find
the element it is looking for in that range it returns the iterator to
the last element in the range, not to the last element in the
container, to the last element in the range.


A range of elements is specified as an iterator A to the first element,
and an iterator B one past the last element.

If std::find fails it returns B, in all cases.

Compare the result iterator to B.

--

Thanks, but I don't think I got an answer for my question. Are you
saying that I have to always give the start and end as the range? What
if I don't want to, what if I want to search only the first 10 elements
of the vector?
I went ahead and tried to do that, the code is right after I stop
blabbering :-), and find() does indeed return the last element of the
range if it doesn't find anything(not that of the container), but what
if the last element of the range does satisfy the condition find() is
looking for, in that case, it would still return the last element in
the range. Thats ambiguous, isn't it?
And what you say above proves it, it does return the last element in
the range you provide, but you are able to work around the situation I
mention because your last element happens to equal the iterator
*.end()(indeed, one past the last element).

//[START]

#include<iostream>
#include<algorithm>
#include<vector>
int main(void){
unsigned int index;
vector<int> intvec(20,3);
vector<int>::iterator it,ret;
for(it = intvec.begin(),index=0;it != intvec.end();++it,++index){
*it =+ index;
cout << "vector Element value equated to subscript "<<*it<<endl;
}
intvec[15] = 45;
cout << "Finding the element with value equal to 45 \n";
it = intvec.begin();
ret = find(it,it+10,45);
if(ret == intvec.end()){
cout << "No such value in the vector.\n";
}
else{
cout << "Element value " << *ret << endl;
}
return(0);
}

//[END]

Jun 11 '06 #3
Draw wrote:
Alf P. Steinbach wrote:
* Draw:

Just a thought, about the find() algorithm in the C++ STL. I read that
the find algorithm can take a range of iterators. If it does not find
the element it is looking for in that range it returns the iterator to
the last element in the range, not to the last element in the
container, to the last element in the range.


A range of elements is specified as an iterator A to the first element,
and an iterator B one past the last element.

If std::find fails it returns B, in all cases.

Compare the result iterator to B.

--

Thanks, but I don't think I got an answer for my question. Are you
saying that I have to always give the start and end as the range? What
if I don't want to, what if I want to search only the first 10 elements
of the vector?
I went ahead and tried to do that, the code is right after I stop
blabbering :-), and find() does indeed return the last element of the
range if it doesn't find anything(not that of the container), but what
if the last element of the range does satisfy the condition find() is
looking for, in that case, it would still return the last element in
the range. Thats ambiguous, isn't it?


The "one past the last element" concept is what you seem to be missing.

The range is specified by giving an iterator A to the first element and
an iterator B to _one past_ the last element in the range i.e. iterator
B itself does not point to an element within the range. Iterator B will
therefore never be returned if the element is found.

Jun 11 '06 #4
Markus Schoder wrote:
Draw wrote:
Alf P. Steinbach wrote:
* Draw:
>
> Just a thought, about the find() algorithm in the C++ STL. I read that
> the find algorithm can take a range of iterators. If it does not find
> the element it is looking for in that range it returns the iterator to
> the last element in the range, not to the last element in the
> container, to the last element in the range.

A range of elements is specified as an iterator A to the first element,
and an iterator B one past the last element.

If std::find fails it returns B, in all cases.

Compare the result iterator to B.

--

Thanks, but I don't think I got an answer for my question. Are you
saying that I have to always give the start and end as the range? What
if I don't want to, what if I want to search only the first 10 elements
of the vector?
I went ahead and tried to do that, the code is right after I stop
blabbering :-), and find() does indeed return the last element of the
range if it doesn't find anything(not that of the container), but what
if the last element of the range does satisfy the condition find() is
looking for, in that case, it would still return the last element in
the range. Thats ambiguous, isn't it?


The "one past the last element" concept is what you seem to be missing.

The range is specified by giving an iterator A to the first element and
an iterator B to _one past_ the last element in the range i.e. iterator
B itself does not point to an element within the range. Iterator B will
therefore never be returned if the element is found.


Thanks Guys! Now I see. Thanks for clarifying that.

Jun 11 '06 #5
Draw wrote:
Alf P. Steinbach wrote:
* Draw:
Just a thought, about the find() algorithm in the C++ STL. I read that
the find algorithm can take a range of iterators. If it does not find
the element it is looking for in that range it returns the iterator to
the last element in the range, not to the last element in the
container, to the last element in the range.
A range of elements is specified as an iterator A to the first element,
and an iterator B one past the last element.

If std::find fails it returns B, in all cases.

Compare the result iterator to B.

--


Thanks, but I don't think I got an answer for my question. Are you
saying that I have to always give the start and end as the range? What
if I don't want to, what if I want to search only the first 10 elements
of the vector?
I went ahead and tried to do that, the code is right after I stop
blabbering :-), and find() does indeed return the last element of the
range if it doesn't find anything(not that of the container), but what
if the last element of the range does satisfy the condition find() is
looking for, in that case, it would still return the last element in
the range. Thats ambiguous, isn't it?
And what you say above proves it, it does return the last element in
the range you provide, but you are able to work around the situation I
mention because your last element happens to equal the iterator
*.end()(indeed, one past the last element).

See the changed code.

//[START]

#include<iostream>
#include<algorithm>
#include<vector>
int main(void){
unsigned int index;
vector<int> intvec(20,3);
vector<int>::iterator it,ret;
for(it = intvec.begin(),index=0;it != intvec.end();++it,++index){
*it =+ index;
cout << "vector Element value equated to subscript "<<*it<<endl;
}
intvec[15] = 45;
cout << "Finding the element with value equal to 45 \n";
it = intvec.begin();
ret = find(it,it+10,45);

// if(ret == intvec.end()){
if (ret == (it+10)) {
// If find does not find the value in [it, it+10), it
// will return it+10, which is one element past the last
// element in [it, it+10) cout << "No such value in the vector.\n";
}
else{
cout << "Element value " << *ret << endl;
}
return(0);
}

//[END]

Jun 11 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

17
2109
by: Rich S. | last post by:
Hello Just like everyone else, I am excited about how easily one can create Windows applications with the .NET platform, but for shareware, I have some serious reservations 1. Your code can be...
7
7055
by: Aguilar, James | last post by:
Hello all, To begin, yes, this -is- a homework assignment. However, it is for my Algorithms class, and my instructor has given us explicit permission to use "expert" groups like newsgroups, so...
4
6468
by: Code4u | last post by:
I need to write an algorithm that sheds the outliers in a large data set, for example, I might want to ignore the smallest 2% of values and find the next smallest. Boost has a nth_element...
50
2789
by: Joseph Casey | last post by:
Greetings. I have read that the mistake of calling free(some_ptr) twice on malloc(some_data) can cause program malfunction. Why is this? With thanks. Joseph Casey.
5
1078
by: Crirus | last post by:
What do you think about this approaches, wich one is the best? For x As Integer = u.GetViewBounds.X To u.GetViewBounds.X + u.GetViewBounds.Width For y As Integer = u.GetViewBounds.Y To...
2
1753
by: xeyder | last post by:
Hi everyone.. I need help about graph theory ( network problems) .. I have below problem . Does anyone know any existence algorithms or solutions to this problem ?? The Problems is: " We...
1
7415
by: Ghada Al-Mashaqbeh via DotNetMonster.com | last post by:
Hi all, I want to implement Lee Maze routing algorithm in C#, I have many problems especially in gaining usefull resources about the algorithm work, please if can any body help me to find...
1
2588
by: hn.ft.pris | last post by:
"Forward maximum match" mean that there is a dictionary contains thousands of items which are single words. For example, "kid", "nice", "best"... And here get a string "kidnicebs", the forward...
30
2691
by: gaoxtwarrior | last post by:
a sort which is stable means it keeps the object's original order. A sort which is in place is stable. does anyone can explain me what is sort in place? thx.
0
7223
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7377
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7036
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
4705
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3191
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3179
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1547
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
762
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
414
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.