Java 删除链表的头节点! 20

publicNodedeletehead(){Nodetemp=head.next;temp.last=null;head=temp;length--;returntem... public Node deletehead()
{
Node temp=head.next;
temp.last=null;
head=temp;
length--;
return temp;
}
删除头节点,并返回头节点的值!这样老报空指针错误,不知道为什么?
还有看下我的链表插入节点,写的对不对!
public void insert(Node p)//插入结点
{
if(head==null)
{
head=p;
tail=p;
p.next=null;
p.last=null;
}
else
{
Node temp;
temp=tail;
tail=p;
temp.next=p;
p.last=temp;

}
length++;
}
展开
 我来答
bd9006
2012-12-31 · TA获得超过2.5万个赞
知道大有可为答主
回答量:4.8万
采纳率:63%
帮助的人:1.6亿
展开全部
逻辑上,这样:让head=head.next; 头就没掉了。

public Node deletehead(){
Node temp=head.next;
head=temp;
return temp;
}
更多追问追答
追问
还是报错啊!!!!!!
追答
head如何定义,有什么数据在链表中。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式