📄 qhtnode.java
字号:
/*
* QHTNode.java
*
* Created on 2008年11月14日, 上午12:17
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package coding;
/**
*
* @author new
*/
public class QHTNode {
String c; //存储的数据,为一个字符
double weight; //节点权重
int parent;//父节点在数组中的位置索引
int lchild;//左孩子在数组中的位置索引
int rchild;//右孩子在数组中的位置索引
/** Creates a new instance of QHTNode */
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -