91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡(jiǎn)介

本項(xiàng)目實(shí)現(xiàn)了一個(gè)基于遞歸分割迷宮和自動(dòng)尋路的java可視化,相應(yīng)博客地址為:http://blog.csdn.net/yutianzuijin/article/details/52078340

資源截圖

代碼片段和文件信息

/**
?*?表示迷宮中的一個(gè)位置?previous:尋路過(guò)程中用來(lái)保存前驅(qū)結(jié)點(diǎn)
?*?@author?ygch
?*/
public?class?Coordinate?{
int?x;
int?y;
Coordinate?previous;

public?Coordinate(int?X?int?Y)?{
x?=?X;
y?=?Y;
previous?=?null;
}

public?Coordinate(int?X?int?Y?Coordinate?c)?{
x?=?X;
y?=?Y;
previous?=?c;
}

/**
?*?重構(gòu)equals函數(shù),方便后面的比較操作
?*/
public?boolean?equals(object?obj)?{
if?(this?==?obj)
return?true;
if?(obj?==?null)
return?false;
if?(getClass()?!=?obj.getClass())
return?false;
Coordinate?other?=?(Coordinate)?obj;
return?x?==?other.x?&&?y?==?other.y;
}
}

?屬性????????????大小?????日期????時(shí)間???名稱(chēng)
-----------?---------??----------?-----??----

?????文件????????301??2016-03-31?21:54??Maze\.classpath

?????文件????????686??2016-04-03?12:17??Maze\.idea\compiler.xml

?????文件?????????76??2016-04-03?12:17??Maze\.idea\copyright\profiles_settings.xml

?????文件????????403??2016-04-03?22:05??Maze\.idea\encodings.xml

?????文件???????2738??2016-04-03?12:19??Maze\.idea\misc.xml

?????文件????????248??2016-04-03?16:49??Maze\.idea\modules.xml

?????文件??????37092??2016-04-03?23:04??Maze\.idea\workspace.xml

?????文件????????380??2016-03-31?21:54??Maze\.project

?????文件????????598??2016-03-31?21:54??Maze\.settings\org.eclipse.jdt.core.prefs

?????文件????????850??2016-04-05?19:25??Maze\bin\Coordinate.class

?????文件???????1649??2016-04-06?22:13??Maze\bin\DrawMaze$MyMouseListener.class

?????文件???????4370??2016-04-06?22:13??Maze\bin\DrawMaze.class

?????文件???????2336??2016-04-07?22:46??Maze\bin\Mainframe.class

?????文件???????9300??2016-04-13?21:39??Maze\bin\Maze.class

?????文件????????492??2016-04-03?12:19??Maze\Maze.iml

?????文件????????641??2016-04-03?22:12??Maze\src\Coordinate.java

?????文件???????4865??2016-04-06?22:13??Maze\src\DrawMaze.java

?????文件???????1667??2016-04-07?22:46??Maze\src\Mainframe.java

?????文件??????11822??2016-04-13?21:39??Maze\src\Maze.java

?????目錄??????????0??2016-04-03?12:17??Maze\.idea\copyright

?????目錄??????????0??2016-04-03?23:04??Maze\.idea

?????目錄??????????0??2016-03-31?21:54??Maze\.settings

?????目錄??????????0??2016-04-03?22:54??Maze\bin

?????目錄??????????0??2016-04-03?23:00??Maze\src

?????目錄??????????0??2016-04-03?12:19??Maze

-----------?---------??----------?-----??----

????????????????80514????????????????????25


評(píng)論

共有 條評(píng)論

相關(guān)資源