This is one of my favourite algorithm puzzles.
Suppose you are given an array of 2n objects
[a1,a2,…,an,b1,b2,…,bn]
You need to reorder the array to be
[b1,a1,b2,a2,…,bk,ak,…,bn,an]
The algorithm should be in-place: i.e. space usage must be O(logkn) words (in the WORD RAM model), for some constant k (preferably O(1) space, but k≤2 will do too). Assume that each object (ai or bi) takes up O(1) space and copying them around is O(1) time and space.
Medium:
Can you give an O(nlogn) time algorithm?
Hard:
Can you give an O(n) time algorithm?
[Solution]
Suppose you are given an array of 2n objects
[a1,a2,…,an,b1,b2,…,bn]
You need to reorder the array to be
[b1,a1,b2,a2,…,bk,ak,…,bn,an]
The algorithm should be in-place: i.e. space usage must be O(logkn) words (in the WORD RAM model), for some constant k (preferably O(1) space, but k≤2 will do too). Assume that each object (ai or bi) takes up O(1) space and copying them around is O(1) time and space.
Medium:
Can you give an O(nlogn) time algorithm?
Hard:
Can you give an O(n) time algorithm?
[Solution]
No comments:
Post a Comment