Posted By:
David_Cole
Posted On:
Saturday, April 6, 2002 09:42 PM
I don't understand your question.
LinkedList does have a constructor which takes a Collection as a parameter, such as a Vector.
LinkedList L = new LinkedList(V) should work.
One thing though, unless you intended to use Vector because it is synchronized, for performance reasons you should try using java.util.ArrayList instead.
If this doesn't help...maybe you could explain your question in more depth.
Dave