负责冬瓜

文章
5
资源
0
加入时间
3年0月9天

算法-第四版-练习1.3.27解答

编写一个方法max(),接受一个链表的首结点作为参数,返回链表中键最大的节点的值。假设所有键均为正整数,如果链表为空则返回0。public Integer max() { if (!(first.item instanceof Integer)) { StdOut.println("类型异常"); return 0; } if (fi