vote up 3 vote down star

I have a linked list that I want to sort part of, eg:

std::sort(someIterator, otherIterator, predicate);

std::sort requires random-access iterators so this approach doesn't work. There is a specialisation std::list::sort, but that can only sort the entire list. I don't think I have enough access to the list members to write something myself.

Is there a way to do this without changing to, say, vector?

flag

67% accept rate

2 Answers

vote up 9 vote down check

How about unhooking the part of the list that you want sorted, into a standalone list, then use the specialized list sort, then hook it back into the original list?

link|flag
That's a good idea. It's easy to forget the power of the splice() method. – bk1e Oct 20 '08 at 2:08
vote up 2 vote down

Yes, but you will have to use a merge sort.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.