摘要:
``` / 用一个数组保存节点,前面n为叶子结点,因为哈夫曼树没有度为1的节点,所以总结点数为2 n 1,后面为组合的节点 / include using namespace std; typedef struct HTNODE{ int weight; int parent; int lchild 阅读全文
摘要:
package CloneTest; class Dog implements Cloneable{ private String dname; private Integer dage; public Dog clone() throws CloneNotSupportedException{ D 阅读全文
摘要:
报错:The method PrintArray(T[]) in the type GenericTest is not applicable for the arguments (char[]) 传参出错 一开始想为什么会出错,是数组的原因吗?又写了一个 这次没报错,究竟是为什么。后来仔细看了泛型 阅读全文