private int complete; //完成的数量
private int[] ants;//蚂蚁位置
private boolean[] orientations;//蚂蚁的方向
private int longness;//竹竿长度
public AntTheme(int count,int[] ants,boolean[] orientations,int longness)
{
this.count = count;
this.complete = ants.length;
this.ants = ants;
this.orientations = orientations;
this.longness = longness;
this.doAccount(this.ants,this.orientations, this.longness);
}
public void doAccount(int[] ants,boolean[] orientations,int longness)
{
//定义蚂蚁的爬行方向
for(int index=0;index<orientations.length;index++)
{
if(orientations[index])
{
ants[index]++;
}
else
{
ants[index]--;
}
}//控制相遇时的爬行方向
for(int antIndex =0;antIndex < ants.length-1;antIndex++)
{
if(ants[antIndex] == ants[antIndex+1])
{
orientations[antIndex] = !orientations[antIndex];
orientations[antIndex+1] = !orientations[antIndex+1];
}
else
{//爬出竹竿的蚂蚁归零
if(ants[antIndex] >= longness || ants[antIndex] <= 0)
{
ants[antIndex] = 0;
this.complete--;
}
}
}
if(ants[ants.length-1] >= longness || ants[ants.length-1] <= 0)
{
ants[ants.length-1] = 0;
this.complete--;
}
if(this.complete <= 0)//是否所有的蚂蚁都爬出了竹竿
{
return;
}
else
{
System.out.println("所有蚂蚁走了" + count++ + "秒");
this.doAccount(ants, orientations, longness);//递归调用
}
}
//蚂蚁的爬行方向true为向右爬,false为向左爬
boolean[] orientations = {true,true,true,true,false};
//蚂蚁的位置
int[] ants = {3,7,11,17,23};
int longness = 27;//竹竿的长度
AntTheme antTheme = new AntTheme(1,ants,orientations,longness);
}
}
得出的结果:
所有蚂蚁走了2秒
所有蚂蚁走了3秒
所有蚂蚁走了4秒
所有蚂蚁走了5秒
所有蚂蚁走了6秒
所有蚂蚁走了7秒
所有蚂蚁走了8秒
所有蚂蚁走了9秒
所有蚂蚁走了10秒
所有蚂蚁走了11秒
所有蚂蚁走了12秒
所有蚂蚁走了13秒
所有蚂蚁走了14秒
所有蚂蚁走了15秒
所有蚂蚁走了16秒
所有蚂蚁走了17秒
所有蚂蚁走了18秒
所有蚂蚁走了19秒
所有蚂蚁走了20秒
所有蚂蚁走了21秒
所有蚂蚁走了22秒
所有蚂蚁走了23秒
所有蚂蚁走了24秒