定义抽象节点类Node:
package cn.wzbrilliant.datastructure;
/**
* 节点
* @author ice
*
*/
public abstract class Node {
private Node next;
public Node(){
next=null;
}
public void setNext(Node next...
分类:
编程语言 时间:
2015-08-04 00:43:53
阅读次数:
133
定义抽象节点类Node: 1 package cn.wzbrilliant.datastructure; 2 3 /** 4 * 节点 5 * @author ice 6 * 7 */ 8 public abstract class Node { 9 private Node ne...
分类:
编程语言 时间:
2015-08-04 00:37:43
阅读次数:
130
Ice_cream's world I
Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 848 Accepted Submission(s): 494
Problem Description
ice_cream's...
分类:
其他好文 时间:
2015-07-30 21:25:19
阅读次数:
142
Ice_cream's world ITime Limit: 3000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 839Accepted Submission(s): 488P...
分类:
其他好文 时间:
2015-07-29 22:50:37
阅读次数:
261
Ice_cream's world I
Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 814 Accepted Submission(s): 478
Problem Description
ice_cream's ...
分类:
其他好文 时间:
2015-07-29 21:30:11
阅读次数:
125
Ice_cream’s world III Time Limit: 3000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1146Accepted Submission(s):...
分类:
其他好文 时间:
2015-07-27 18:25:01
阅读次数:
105
Description
You play a computer game. Your character stands on some level of a multilevel ice cave. In order to move on forward, you need to descend one level lower and the only way to do this is t...
分类:
其他好文 时间:
2015-07-26 22:46:04
阅读次数:
346
DescriptionYou play a computer game. Your character stands on some level of a multilevel ice cave. In order to move on forward, you need to descend on...
分类:
其他好文 时间:
2015-07-26 20:35:03
阅读次数:
133
Ice-sugar GourdTime Limit: 5000/2000 MS (Java/Others)Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 936Accepted Submission(s): 329Probl...
分类:
其他好文 时间:
2015-07-26 00:18:06
阅读次数:
160
题目链接 题意: n*m的地图,'X'表示有裂痕的冰块,'.'表示完整的冰块,有裂痕的冰块再被踩一次就会碎掉,完整的冰块被踩一次会变成有裂痕的冰块, 现在告诉起点和终点,问从起点能否走到终点并且使终点的冰块碎掉。不能原地跳。起点和终点可能会在同一个位置。 解题思路: 在只走‘.’的情况下把终点的冰踩...
分类:
其他好文 时间:
2015-07-25 21:23:24
阅读次数:
123