| Jorge's profileJorge's spacePhotosBlogNetwork | Help |
Jorge's space |
|||||||||
|
April 01 Java: Immutable StackHere is the challenge: write an immutable stack in Java. You might be thinking that a stack is by its very nature something that changes. A stack is an abstract data type with the interface:
You push stuff onto it, you pop stuff off of it, it changes. How can it be immutable? Every time you need to make a data structure immutable, you use basically the same trick: an operation which “changes” the data structure does so by constructing a new data structure. The original data structure stays the same. How can that possibly be efficient? Surely we’ll be allocating memory all over the place! Well, actually, in this case, no. An immutable stack is every bit as efficient as a mutable stack. Even better: in some cases, it can be considerably more efficient, as we'll see. Let’s start by defining an interface for our immutable structure. While we’re at it, we’ll fix a problem with the stack ADT above, namely that you cannot interrogate the stack without changing it. And we’ll make the stack enumerable just for the heck of it:
Pushing and popping give you back an entirely new stack, and Peek lets you look at the top of the stack without popping it. Now let’s think about constructing one of these things here. Clearly if we have an existing stack we can construct a new one by pushing or popping it. But we have to start somewhere. Since every empty stack is the same, it seems sensible to have a singleton empty stack.
And now we can easily create stacks and push stuff onto them. Notice how the fact that we have immutability means that stacks with the same tail can share state, saving on memory:
José InácioJosé Inácio agricultor de vocação assumava à ombreira da porta e especou a olhar para a mulher. Foi apenas quando Maria da Ascensão espantada com o marido o inquiriu "o qué q'ouve" que José Inácio foi iluminado pelo espírito das piadas secas e respondeu motejando "é uma hortaliça". March 25 Celibato EternoEle ia jurar que enquanto usava os braços como escudo para se proteger das agressões da companheira por se ter esquecido do aniversário tinha ouvido as palavras "celibato eterno". |
||||||||
|
|