Hi all,
What is the easiest and fastest way to merge 2 vectors?
Cheers!
Roedy Green - 23 Jun 2005 05:27 GMT
>What is the easiest and fastest way to merge 2 vectors?
Use the SortedArrayList class or cannibalise it.
See http://mindprod.com/products.html#SORTED

Signature
Bush crime family lost/embezzled $3 trillion from Pentagon.
Complicit Bush-friendly media keeps mum. Rumsfeld confesses on video.
http://www.infowars.com/articles/us/mckinney_grills_rumsfeld.htm
Canadian Mind Products, Roedy Green.
See http://mindprod.com/iraq.html photos of Bush's war crimes
John Currier - 23 Jun 2005 06:06 GMT
vector1.addAll(vector2) is definitely the easiest, but it all depends
on your definition of "merge."
Note that most people have moved on to ArrayList instead of Vector.
John
http://schemaspy.sourceforge.net
Jesper Nordenberg - 23 Jun 2005 08:22 GMT
> Hi all,
>
> What is the easiest and fastest way to merge 2 vectors?
http://java.sun.com/j2se/1.5.0/docs/api/java/util/Collection.html#addAll(java.ut
il.Collection)
/JN