Processing math: 100%

Tuesday, January 13, 2015

Rearrange the array, algorithm puzzle

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 k2 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