Merge Sorted Stacks in Ascending Order Using 4n-4 Moves

  • Thread starter Thread starter transgalactic
  • Start date Start date
AI Thread Summary
The discussion revolves around merging two sorted stacks, S1 and S2, into a third stack, S3, while maintaining the sorted order and adhering to a move limit of 4n-4. The stacks contain objects sorted in ascending order, with the largest on top. Initial attempts to solve the problem involved using temporary variables to pop elements from S1 and S2, comparing them, and pushing the smaller one to S3. However, this method quickly exceeded the move limit due to the need for additional operations, including flipping stacks and reversing orders.A more efficient approach suggested involves building the temporary stack in reverse order and strategically placing elements directly into S3 without fully populating the temporary stack. This method emphasizes the importance of minimizing unnecessary moves and leveraging the concept of invariants to streamline the process. The discussion highlights the need for careful planning to stay within the defined move constraints while achieving the desired outcome.
transgalactic
Messages
1,386
Reaction score
0
i have two stack S1 and S2 the total amount of objects
in them is "n"
in both stack all the objects are sorted in accending order

(the biggest number is on top the smallest number is on the bottom)

and that's the way it goes in both stacks

the question asks me to build a method which
puts all of the objects from stacks S1 and S2 into stack S3
in accended order plus we have to accomplish this using 4n-4 moves ??
(the biggest number is on top the smallest number is on the bottom)

i tried to solve that by
flipping the stacks using the S3 so they will be sorted from the smallest
to the biggest
taking two templorary variables pop each object from each stack
into the temporary variable
and then we compare them and the smallest goes to S3
and the other one waits till we have an object from the other stack which is smaller than him,
and then we have to flip S3 in order have the biggest on top
also i tried using TOP commang but i found out that
its implementation also has push and pop in it.
but in that way we have more than 4n-4 moves
 
Technology news on Phys.org
This is the http://en.wikipedia.org/wiki/Tower_of_Hanoi" Problem if I am not mistaken. This should get you started.
 
Last edited by a moderator:
a. Move S1 to S3 = S1'
b. Move S2 to S1 = S2'.
c. Move S3 to S2 = S1.
*the two stacks are exchanged and (their) one order reversed in 3n/2 moves.
d. now you can continue.

hint: repeat a.b,c to have 6n/2 moves.
 
Last edited:
transgalactic said:
i tried to solve that by
flipping the stacks using the S3 so they will be sorted from the smallest
to the biggest
This along requires 2n operations. Not a good start. Not only that, you will have to reverse the temporary stack at the end, costing another 2n operations. You have already exceeded the budget with this approach and you haven't even started building the temporary stack. Solution: build the temporary stack in reverse order.
and then we compare them and the smallest goes to S3
You don't have to do this to the bitter end. You can save some operations by avoiding putting all of the elements on the temporary stack. At some point you will have emptied both stacks, leaving you with two elements in the temporary variables and n-2 elements in the temporary stack. Why not put the two temporary variables directly where they belong instead?

It helps to think of invariants, if you have been taught that concept.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I had a Microsoft Technical interview this past Friday, the question I was asked was this : How do you find the middle value for a dataset that is too big to fit in RAM? I was not able to figure this out during the interview, but I have been look in this all weekend and I read something online that said it can be done at O(N) using something called the counting sort histogram algorithm ( I did not learn that in my advanced data structures and algorithms class). I have watched some youtube...
Back
Top