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.
|
feedback
|
|
Johnny Coder has an implementation here: http://johnnycoder.com/blog/2008/01/07/undo-functionality-with-a-limited-stack/ | |||||
feedback
|
|
A circular buffer should do the job; easy enough to wrap a list or array, but nothing built in AFAIK. | |||||||||
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. | |||
|
feedback
|
|
.Net is rather deficient in type of collections. You'll find a collection library here. Use CircularQueue. | ||||
feedback
|