Re: Add(Merge) two vectors
- From: "Igor Tandetnik" <itandetnik@xxxxxxxx>
- Date: Sat, 10 Sep 2005 15:37:25 -0400
"farmer" <sdfarmer@xxxxxxxx> wrote in message
news:1126371548.559327.244430@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
> vector<CString> Vect;
> vector<CString> Vect2;
>
> (1)Vect+=Vect2;
> (2)vector<CString>Vect3=Vect+Vect2;
> (3)merge(Vect.begin(),Vect.end(),Vect2.begin(),Vect2.end);
Vect.insert(Vect.end(), Vect2.begin(), Vect2.end());
--
With best wishes,
Igor Tandetnik
With sufficient thrust, pigs fly just fine. However, this is not
necessarily a good idea. It is hard to be sure where they are going to
land, and it could be dangerous sitting under them as they fly
overhead. -- RFC 1925
.
- Follow-Ups:
- Re: Add(Merge) two vectors
- From: Oliver \(Nospam\)
- Re: Add(Merge) two vectors
- References:
- Add(Merge) two vectors
- From: farmer
- Add(Merge) two vectors
- Prev by Date: Re: Add(Merge) two vectors
- Next by Date: Re: Add(Merge) two vectors
- Previous by thread: Re: Add(Merge) two vectors
- Next by thread: Re: Add(Merge) two vectors
- Index(es):
Relevant Pages
|
|