pqueuenode.java
来自「Reinforcement Learning」· Java 代码 · 共 33 行
JAVA
33 行
/*
* Created on Jan 18, 2005
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
/**
* @author ryk
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class PQueueNode {
State state;
double priority;
public PQueueNode(State _st, double _priority)
{
state = new State(_st.x, _st.y);
// state.copy(_st);
priority = _priority;
}
public boolean equals(Object Obj)
{
PQueueNode node = (PQueueNode)Obj;
return (state.equals(node.state));
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?