Given a stack S, need to sort the stack using only Push, Pop, Top, IsEmpty, IsFull.
Looking for most simple solution.
Edited: Removed in place condition. Can't use another stack or queue.
|
Given a stack S, need to sort the stack using only Looking for most simple solution. Edited: Removed in place condition. Can't use another stack or queue. |
|||||||||||||||||||||
|
It can be done...Ok: sorted, ahem, "in-place" with only the listed ops, didn't need Top() or IsFull() or another stack or data structure other than the call frames. (Presumably the whole point of the Ruby
|
|||||||
|
|
techInterview Discussion - Sorting on Stack More pseudo than anything, but there is code examples and possible solution. |
|||||||||||||||||
|
|
For this problem, can we consider using system stack? Make several recursive calls.
|
||||
|
|
|
You can't. You can't reorder the contents of a stack without removing elements, by definition. Also push and pop aren't in-place operations, so basically you're asking to sort a stack with Top, IsEmpty and IsFull. |
|||||||||
|
|
Its not possible. That happens because you cant iterate through the stack, because it has to be in place (you could if you would use extra memory). So if you cant iterate through the stack you cant even compare two elements of the stack. A sort without comparing would need extra memory, so that cant be used either. Also im sure its not homework, because i dont think a teacher would give you a problem that cant be solved. If you really have to do it only with stacks, just use 1-2 extra temporary stacks (i think 2 are needed, but not 100% sure) and do it. |
|||||||
|
|
What temporary data structures can you use? With push and pop, and no temporary storage for n elements, accessing data near the bottom of the stack would be impossible without storing the rest -somewhere-. If |
|||
|
|
|
To bad you couldn't have two other stacks, then you could have played the Towers of Hanoi in O(n) space. |
|||
|
|
|
//A java version
|
||||
|
|