码迷,mamicode.com
首页 > 编程语言 > 详细

过桥问题的JAVA实现

时间:2015-05-26 18:09:22      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

package 过桥问题;

import java.util.Vector;

public class BridgePass {

private Vector v_source = null;
private Vector v_destination = null;
private static int time_total = 0;

public BridgePass()
{
v_source = new Vector();
v_destination = new Vector();
}

public void setSource(int[] array, int num){
for(int i=0; i<num; i++){
v_source.addElement(array[i]);
}
}

public Vector getSource(){
return v_source;
}

public Vector getDestination(){
return v_destination;
}

/**
* the recursive algorithm.
* @param src : the set of persons in A-side
* @param des : the set of persons in B-side
* @param size : the number of persons in A-side
* @param totalTime : the totalTime has used
*/
public void passMethod(Vector src, Vector des, int size, int totalTime)
{

//If only 2 persons in A-side, just pass bridge together in one time.
if(size == 2){
System.out.println("A->B:"+src.elementAt(0)+" AND "+ src.elementAt(1));
System.out.println("*****Total Time: "+(totalTime + Math.max((Integer)src.elementAt(0),(Integer)src.elementAt(1)))+"****");
} else if(size >= 3){

// if more than 2 persons in A-Side, use the recursive algorithm.
for(int i=0; i<size; i++){
for(int j=i+1; j<size; j++){

//Pass, A->B

Vector _src = null;
Vector _des = null;
_src = (Vector)src.clone();
_des = (Vector)des.clone();

int time1 = 0;
int time2 = 0;

time1 = (Integer)_src.elementAt(i);
_des.addElement(time1);

time2 = (Integer)_src.elementAt(j);
_des.addElement(time2);

System.out.print("A->B:"+ time1);
System.out.println(" AND "+ time2);

_src.removeElement(time1);
_src.removeElement(time2);

//BACK, B->A

int minValue = (Integer)_des.elementAt(0);
for(int k=0 ; k<_des.size(); k++){
if(((Integer)_des.elementAt(k)).intValue() < minValue){
minValue = (Integer)_des.elementAt(k);
}
}

_src.addElement(minValue);
_des.removeElement(minValue);

System.out.println("B->A:"+minValue);

passMethod(_src, _des, _src.size(), totalTime + Math.max(time1, time2) + minValue);

}

}
}
}


public static void main(String[] cmd)
{
BridgePass test = new BridgePass();

//the persons want to pass bridge:
int source[] = {1,2,5,8,10};
test.setSource(source, source.length);
test.passMethod(test.getSource(), test.getDestination(), source.length, 0);
}
}

概述:桥两边当做集合,递归的表示出过去两个回来一个。

过桥问题的JAVA实现

标签:

原文地址:http://www.cnblogs.com/52zjj/p/4530969.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!