?? blank.java
字號:
public class Blank {
public int x;
public int y;
public Blank(){
x=0;
y=0;
}
public boolean exchange(Nod nod) {
if (nod.n==0)return false;
int t=nod.x;
nod.x=this.x;
this.x=t;
t=nod.y;
nod.y=this.y;
this.y=t;
return true;
}
public void setf(boolean[] f,int N){
if(x>0)f[1]=true;
if(y>0)f[4]=true;
if(x<N)f[2]=true;
if(y<N)f[3]=true;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -