I am working in .Net environment using C#. I need some alternative for the Stack data structure. Some kind of bound stack. The quantity of elements in the collection shouldn't exceed some fixed specified number. And, if that number achieved and new element is pushed, than most older element must be deleted. I need this for storing commands for Undo/Redo strategies.

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

Johnny Coder has an implementation here: http://johnnycoder.com/blog/2008/01/07/undo-functionality-with-a-limited-stack/

link|improve this answer
Nice! I will probably go with it. Thank you. – Peter17 Feb 15 '11 at 12:19
@Micha: Welcome to Stack Overflow. If you like anyone's answer please up vote it, and please accept the best answer (not necessarily mine!) – Jackson Pope Feb 15 '11 at 12:39
feedback

A circular buffer should do the job; easy enough to wrap a list or array, but nothing built in AFAIK.

link|improve this answer
1  
hey mark you crossed 200K!! oh i wished to vote you the last point.. Congrats.. – Shekhar_Pro Feb 15 '11 at 11:50
1  
Thank you. I found free implementation of the circular buffer here: bufferhttp://circularbuffer.codeplex.com/ – Peter17 Feb 15 '11 at 12:17
feedback

There's no builtin Class for this in Framework. (we dont expect to delete data automatically). But you can very well Extend the Stack class and Override Push/Pop and other Methods to suit your needs.

link|improve this answer
feedback

.Net is rather deficient in type of collections. You'll find a collection library here. Use CircularQueue.

link|improve this answer
Thank you. Collection library will be handy. Now I know where to look when I need some specific collection. – Peter17 Feb 15 '11 at 12:42
feedback

Your Answer

 
or
required, but never shown

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