Array Puzzle

change array={a1,a2,...,an,b1,b2,...,bn} to {a1,b1,a2,b2,...,an,bn} with O(n) time and O(1) space.


int j, temp = 0, n = array.length / 2;

for (int i = 1; i < array.length - 1; i++) {
temp = 0;
j = i ;
j = n + (j/((j^(j-1))+1));
while (j < i) {
j = n + (j/((j^(j-1))+1));
}

temp = array[i];
array[i] = array[j];
array[j] = temp;
}



package com.onezero;

/**
* change array {a1,a2,...an,b1,b2,...bn}
* to {a1,b1,a2,b2,...,an,bn}
* using O(n) time and O(1) space
*
* @author andyjojo
*
*/
public class ArrayPuzzle1 {

int [] array;

public ArrayPuzzle1(int[] arr){
array = arr;
}

/**
* from 1 to array.length - 1
* calculate result array i-th location
*
*/
public void change1() {
int j, temp = 0, n = array.length / 2;

for (int i = 1; i < array.length - 1; i++) {
temp = 0;
j = i + 1;
while (j % 2 == 1)
j = (j + 1) / 2;
j = n + j / 2 - 1;
while (j < i) {
j++;
while (j % 2 == 1)
j = (j + 1) / 2;
j = n + j / 2 - 1;
}

temp = array[i];
array[i] = array[j];
array[j] = temp;
}
}

/**
* The magic calculation of {@link#change1()}
*
*/
public void change2(){

int j, temp = 0, n = array.length / 2;

for (int i = 1; i < array.length - 1; i++) {
temp = 0;
j = i ;
j = n + (j/((j^(j-1))+1));
while (j < i) {
j = n + (j/((j^(j-1))+1));
}

temp = array[i];
array[i] = array[j];
array[j] = temp;
}
}

/**
* find in http://discuss.techinterview.org/default.asp?interview.11.482833.2
* it not work, need to check what it work for.
*/
/*public void changeother(){
int n = array.length/2;
for(int i=0;i<n;++i)
{
array[i]^=array[n+i]^=array[i]^=array[n+i];
}
}*/

/**
* print the array
*/
public void print() {
for (int i = 0; i < array.length; i++) {
System.out.println(array[i]);
}
}

/**
* compares with a array
* @param b array b
* @return true when array b is the same with array, false otherwise
*/
public boolean compare(int[] b) {

if(array.length!=b.length) return false;

for (int i = 0; i < array.length; i++) {
if (array[i] != b[i])
return false;

}
return true;
}

/**
* construct a 2n element array {array[i]=i}
* aka. ai=i, bi=n+i
* @param n the half number of array length
* @return a 2n element array {ai=i}
*/
public static int[] constructOrignal(int n) {
int[] array = new int[n * 2];
for (int i = 0; i < 2*n; i++) {
array[i] = i;
}
return array;
}

/**
* construct the result of this puzzle of array {array[i]=i}
* @param n the half number of array length
* @return the result of this puzzle of array {array[i]=i}
*/
public static int[] constructResult(int n) {
int[] array = new int[n * 2];
for (int i = 0; i < n; i++) {
array[2 * i] = i;
array[2 * i + 1] = n + i;
}
return array;
}

/**
* @param args
*/
public static void main(String[] args) {
ArrayPuzzle1 ap;
for (int i = 1; i < 9999; i++) {
ap = new ArrayPuzzle1(constructOrignal(i));
ap.change2();//the same with ap.change1()
if (!ap.compare(constructResult(i)))
System.out.println("Fail on " + i);
}
}

}



说明(一下内容反选可见,你可以看完代码再看。希望收到你的意见,谢谢):
[color=white]

1 和 2n 的位置不用换
j 从 2 到 2n-1
如果j是偶数,只要直接与n+j/2交换即可
如果j是奇数,那么就要放置a[(j+1)/2]即可,那么问题就是要找到a[(j+1)/2]当前的位置
因为(j+1)/2<j,所以在处理(j+1)/2时,a[(j+1)/2] 已经不在(j+1)/2了,替换到(j+1)/2位置上元素没有替换之前的位置,所以在考虑(j+1)/2即可。
比如位置5,应该是a3, 而对于3,应该是a2, 同样对于2,应该是b1, 即n+1位置,所以a3此时应该在n+1的位置。

如果按照上面的位置找到j需要替换的元素位置小于j,说明该元素在j之前又被替换了一次,就需要继续用上面的方法查找。
[/color]
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值