Problem 44712. Sort Reversal
There are n index cards in a row, with n distinct integers written on them (one number per card) so that the numbers are sorted in decreasing order. You are only allowed to exchange pair of cards that have exactly one card between them.
Given an odd value n, what is the minimum number of exchanges required to reverse the order of arrangement?
THEORY: The problem can be solved by applying a sorting algorithm such as bubble sort or insertion sort first to the numbers in odd positions and then to the numbers in even positions.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers17
Suggested Problems
-
Back to basics 21 - Matrix replicating
1788 Solvers
-
How many trades represent all the profit?
615 Solvers
-
Construct an index vector from two input vectors in vectorized fashion
448 Solvers
-
Compute LOG(1+X) in natural log
262 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
2134 Solvers
More from this Author18
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!