Posted By:
George_McKinney
Posted On:
Monday, October 15, 2001 01:36 PM
Are you asking whether there are implementations of LinkedList that include the methods you describe?
Collections.sort(Collection c) returns void; that is, it sorts the Collection without creating a new one.
Collections.appendAll() doesn't exist, though there is an addAll() method in the Collection interface.
I don't know of any implementations/extensions such as those, but one should be fairly easy to code.