
data structure & algorithm
文章平均质量分 81
iteye_707
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Java实现基于回溯的迷宫搜索算法 --- Backtrack Based Maze Searching Algorithm in Java
Definition: 0. use a 2d array of integers to represent a maze; 1. 0 for passable, 1 if not; 2. the first element (maze[0][0]) is the entry; 3. the last element (maze[maze.length - 1][maze...2014-04-15 20:02:00 · 217 阅读 · 0 评论 -
Java集合类接口概览——Java Collections Overview
Mindmap of Java collections api: mindmap png References: Java Platform Standard Edition 7 Documentation 《Java How to Program》,9th Edition 2012,Chapter 20,"Generic Collections" Class diag...2014-05-14 08:35:58 · 172 阅读 · 0 评论 -
蛮力法解字谜游戏
时差爆发,睡不着,闲的蛋疼。。。思路写在注释里,直接撸代码: import java.util.*; public class WordPuzzle { private char[][] puzzle; private List<String> wordList; public WordPuzzle(char[][] puzzle,...原创 2014-05-17 07:13:42 · 260 阅读 · 0 评论