473,385 Members | 1,740 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Bizarre vector insertion behavior - can someone please enlighten?

I've run into a seemingly bizarre problem with insert() for
std::vector. (This was done on Microsoft Visual C++ 2005 express
version 8...maybe it is a compiler specific bug?)

Here's the code:

//===================

// vector tester 3.cpp : main project file.

#include "stdafx.h"
#include<vector>

int main(array<System::String ^^args)
{
std::vector<intvectorList;

for (unsigned int i = 0; i < 45; ++i) // works if 45 is
replaced with smaller value.
vectorList.push_back(i);

unsigned int aBegin = 25;
unsigned int aEnd = 35; // works if 35 is replaced with 34.

vectorList.insert(vectorList.begin() + 35, // works if 35 is
replaced by 36, 37, 38 ...
// but not if 35 is replaced by 34, 33, 32...
vectorList.begin() + aBegin, vectorList.begin() + aEnd);

return 0;
}

//========================

When this is run, an error occurs during the insertion about
incompatible vector iterators.
At first I thought, maybe this is happening because I'm trying to
insert into the range that I am copying...but, if the size of the
vector is just changed from 45 elements long to 44 elements long...the
program works! I think that is just bizarre.

Does anybody understand what is going on here? It would be crazy to
write code that might fail whenever it encounters a vector.insert() so
I would like to understand the reason this code fails but when the 45
is replaced with 44, it works.

Any insight appreciated!

CK

Mar 7 '07 #1
9 6509
ck***********@gmail.com wrote:
I've run into a seemingly bizarre problem with insert() for
std::vector. (This was done on Microsoft Visual C++ 2005 express
version 8...maybe it is a compiler specific bug?)

Here's the code:

//===================

// vector tester 3.cpp : main project file.

#include "stdafx.h"
You might want to consider weeding MS-isms out before posting here.
#include<vector>

int main(array<System::String ^^args)
That's not Standard C++, sorry. For managed extensions, try MS
newsgroups.
{
std::vector<intvectorList;

for (unsigned int i = 0; i < 45; ++i) // works if 45 is
replaced with smaller value.
What "works"? By extension, what "doesn't"?
vectorList.push_back(i);

unsigned int aBegin = 25;
unsigned int aEnd = 35; // works if 35 is replaced with 34.

vectorList.insert(vectorList.begin() + 35, // works if 35 is
replaced by 36, 37, 38 ...
// but not if 35 is replaced by 34, 33, 32...
vectorList.begin() + aBegin, vectorList.begin() + aEnd);
Any insertion into the middle of the vector can invalidate _all_
of its iterators (the one returned by 'begin()' included). Your
program most likely has undefined behaviour.

You can avoid that if you reserve memory in the vector:

vectorList.reserve(vectorList.size() + how_many_to_insert);
>
return 0;
}

//========================

When this is run, an error occurs during the insertion about
incompatible vector iterators.
"incompatible"? I don't think this is a Standard term.
At first I thought, maybe this is happening because I'm trying to
insert into the range that I am copying...but, if the size of the
vector is just changed from 45 elements long to 44 elements long...the
program works! I think that is just bizarre.
It isn't. See above.
Does anybody understand what is going on here? It would be crazy to
write code that might fail whenever it encounters a vector.insert() so
I would like to understand the reason this code fails but when the 45
is replaced with 44, it works.
Do not insert the elements of a vector into itself without reserving
first.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Mar 7 '07 #2
Hi Victor,

Thank you for your tips about posting here. It was my first post to
this newsgroup.

I thought of the reserve possibility, and it doesn't fix the problem.
When the code is run, I get:

Debug Assertion Failed!

Program:...
File: C:\Program Files\Microsoft Visual Studio 8\VC\include\vector
Line: 238

Expression: vector iterators incompatible
I took a look at Stroustrup's examples with fruit (3rd ed., p. 453),
and noticed that he avoids inserting a segment of a vector into
itself. However, Microsoft's own help on vector insert does use an
example of such an insertion. Also Stroustrup does not mention any
concern with self-insertion.

The only way I have of getting around this error that I hope is a
consistent fix is to do the following:

std::vector<inttemp;
temp.assign(vectorList.begin() + aBegin, vectorList.begin() +
aEnd);
vectorList.insert(vectorList.begin() + 35, temp.begin(),
temp.end());

Does the code I posted earlier run without the error on other
compilers? Sorry about the MS-isms.

CK

Mar 7 '07 #3
Victor Bazarov wrote:
ck***********@gmail.com wrote:
[snip}
> std::vector<intvectorList;

for (unsigned int i = 0; i < 45; ++i) // works if 45 is
replaced with smaller value.

What "works"? By extension, what "doesn't"?
> vectorList.push_back(i);

unsigned int aBegin = 25;
unsigned int aEnd = 35; // works if 35 is replaced with 34.

vectorList.insert(vectorList.begin() + 35, // works if 35 is
replaced by 36, 37, 38 ...
// but not if 35 is replaced by 34, 33, 32...
vectorList.begin() + aBegin, vectorList.begin() + aEnd);
[snip]
>Does anybody understand what is going on here? It would be crazy to
write code that might fail whenever it encounters a vector.insert() so
I would like to understand the reason this code fails but when the 45
is replaced with 44, it works.

Do not insert the elements of a vector into itself without reserving
first.
Actually, that can be phrased more general: never use

a.insert(p,i,j) // p : iterator into the vector
// i,j : iterators

to insert elements of a vector into itself. The precondition for this method
is stated in Table 67 as: pre: i,j are not iterators into a.
Best

Kai-Uwe Bux
Mar 7 '07 #4
Hi,
I'm not sure, but I think the iterator doesn't keep a pointer to
its vector, but a pointer to the vector's data (which is an array).
Now I think, when you insert into the vector and the vector has
to reallocate its data array, the pointer in the iterator becomes
invalid. Maybe it works for values lower than 35, because reallocation
doesn't happen then. But that's just a wild guess.

Regards
Thorsten

Mar 7 '07 #5
ck***********@gmail.com wrote:
[..]
Does the code I posted earlier run without the error on other
compilers? [..]
I am not even going to try. It has undefined behaviour, and
as such can cause nasal demons to take to the air.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Mar 7 '07 #6
Thanks to all for their replies.

It seems that the lesson I have to learn is that an official reference
to the standard template library would be valuable.

Is that what the "Table 67" is from that Kae-Uwe Bux refers to? Could
you please provide the name of the reference source? I googled it and
did find a Table 67 in a gcc.gnu.org website. Is that the source?

CK

Mar 7 '07 #7
ck***********@gmail.com wrote:
Thanks to all for their replies.

It seems that the lesson I have to learn is that an official reference
to the standard template library would be valuable.

Is that what the "Table 67" is from that Kae-Uwe Bux refers to? Could
you please provide the name of the reference source? I googled it and
did find a Table 67 in a gcc.gnu.org website. Is that the source?
The Standard document. Table 67 is titled "Sequence requirements (in
addition to container)". See FAQ or search the archives on how to get
a copy of the Standard.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Mar 7 '07 #8
ck***********@gmail.com writes:
Thanks to all for their replies.

It seems that the lesson I have to learn is that an official reference
to the standard template library would be valuable.
Every C++ programmer should have Josuttis' "The C++ Standard Library"
on their desk, among others.

----------------------------------------------------------------------
Dave Steffen, Ph.D. Disobey this command!
Software Engineer IV - Douglas Hofstadter
Numerica Corporation
dg@steffen a@t numerica d@ot us (remove @'s to email me)
Mar 7 '07 #9
ck***********@gmail.com wrote:
Thanks to all for their replies.

It seems that the lesson I have to learn is that an official reference
to the standard template library would be valuable.

Is that what the "Table 67" is from that Kae-Uwe Bux refers to? Could
you please provide the name of the reference source? I googled it and
did find a Table 67 in a gcc.gnu.org website. Is that the source?

CK
Not "official", but this is a quite good reference:
http://www.sgi.com/tech/stl/table_of_contents.html

--
Alan Johnson
Mar 8 '07 #10

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

Similar topics

6
by: Mattias Brändström | last post by:
Hello all! I am trying to write code that allows me to initialise one of my classes inline (with a vector like structure). Inline might not be the best term to use here but I can't think of any...
34
by: Adam Hartshorne | last post by:
Hi All, I have the following problem, and I would be extremely grateful if somebody would be kind enough to suggest an efficient solution to it. I create an instance of a Class A, and...
9
by: Amadeus W. M. | last post by:
I have a vector from which I want to erase elements between iterators i,j. If i<j, everything works as expected, but if j>i, an insertion is actually performed. Example: vector<double> x(10);...
13
by: zaineb | last post by:
Hi, This is a follow-up of sort of this thread:...
28
by: VK | last post by:
A while ago I wrote a "Vector data type" script using DOM interface to select.options. That was a (beautiful) mind game :-) rather than a practical thing to use. Here is another attempt open...
0
by: ckfan.painter | last post by:
I've run into a seemingly bizarre problem with insert() for std::vector. (This was done on Microsoft Visual C++ 2005 express version 8...maybe it is a compiler specific bug?) Here's the code: ...
12
by: desktop | last post by:
Why does insert only work when specifying an iterator plus the object to be inserted: std::vector<intt; std::vector<int>::iterator it; it = t.begin(); t.insert(it,33); If I use push_back...
4
by: er | last post by:
hi, the code below generates the following behavior. cld someone please help understand it? 1) clean project + build project generates build errors (see bottom) 2) build a second time, errors...
1
by: subramanian100in | last post by:
Suppose I have vector<intvi; deque<intdi; list<intli; Suppose all of these containers have some elements. Suppose 'v_iter' is an iterator pointing to some element in 'vi'. Suppose 'v_beg'...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...

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.