您好,欢迎来到化拓教育网。
搜索
您的当前位置:首页过桥问题的JAVA实现

过桥问题的JAVA实现

来源:化拓教育网

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);
}
}

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

转载于:https://www.cnblogs.com/52zjj/p/4530969.html

因篇幅问题不能全部显示,请点此查看更多更全内容

Copyright © 2019- huatuo9.cn 版权所有 赣ICP备2023008801号-1

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务