Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have already the list pointer of CDrawObject*

std::list<CDrawObject*> elements;

How I can move some element to the end of list. I see STL Algorithms Reference but i don't find this operations. How i can do it?

share|improve this question
7  
Not 100% pertinent with your question, but are you sure that a linked list of pointers is a sensible data structure choice? There are only a few cases in which I'd consider it the best option... – 6502 Feb 6 '11 at 8:49
1  
It is when what he is doing is moving an item from the middle of the list to the end. list is the only collection in which doing this is constant time. – CashCow Feb 6 '11 at 17:55

3 Answers

up vote 17 down vote accepted

Use the list method splice()

void list::splice ( iterator position, list<T,Allocator>& x, iterator i );

Move iterator i from list x into current list at position "position"

Thus to move it to the end put

x.splice( x.end(), x, iter );

(they can both be the same list or different lists as long as the list from which the item is moved has the same type, both T and Allocator)

share|improve this answer

A std::list is a doubly-linked list, which means you do not have random access to element n. You have to can remove the element, and then use push_back.

share|improve this answer
thank you that was answered on my stupid question – G-71 Feb 6 '11 at 9:11
2  
No you don't have to do it that way and the poster was too quick to accept the answer. – CashCow Feb 6 '11 at 9:13
1  
I didn't mean "have to" in the sense of "that's the only way", but anyway, @G-71 feel free to un-accept my answer if another answer is better. – Itamar Katz Feb 6 '11 at 9:33
1  
+1 totally acceptible for a container of pointers. If copying a T is more costly, though, splicing should be preferred. – sellibitze Feb 6 '11 at 12:09

Remove it then append it to your list.

share|improve this answer
This isn't as efficient as the chosen answer. – Graeme Nov 9 '12 at 12:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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