摘要:
/** * use memory search to solve ski problem * copyright: wuzhimu * date: 2012.3.10 */#include <stdio.h>int m,n;/* * * storage the point whether cross or not * and storage cross the point max lenth */struct point { bool cross; int maxPath;};// storage point 's locationstruct direction{ int 阅读全文
posted @ 2012-03-10 23:25
jim_wu
阅读(149)
评论(0)
推荐(0)