/**
- 描述:
删除链表中等于给定值val的所有节点。
不使用java api LinkedList、ArrayList实现
样例:
给出链表 1->2->3->3->4->5->3, 和 val = 3, 你需要返回删除3之后的链表:1->2->4->5。
分析:
1.首先判断head是不是空,为空就直接返回null
2.然后从head.next开始循环遍历,删除相等于val的元素
3.最后判断head是否和val相等,若相等,head = head.next
(这里最后判断head是有原因的,因为head只是一个节点,只要判断一次,如果最先判断head就比较麻烦,因为如果等于val,head就要发生变化)
这里也体现出为什么设计链表的时候要空出一个头结点
*/
package leetcode;
class ListNode{
int val;
ListNode nextNode;
ListNode(int val){
this.val=val;
this.nextNode=null;
}
}
public class n2deletelistnode {
static ListNode head=null;
public static void main(String[] args) {
// TODO Auto-generated method stub
int[] input=new int[]{1,2,3,3,4,4,5};
ListNode listNode=buildListNode(input);
head=listNode;
while(listNode!=null){
System.out.println("val"+listNode.val+"/listNode"+listNode.nextNode);
listNode=listNode.nextNode;
}
head=removeElements(head,3);
listNode=head;
while(listNode!=null){
System.out.println("val"+listNode.val+"/listNode"+listNode.nextNode);
listNode=listNode.nextNode;
}
}
private static ListNode buildListNode(int[] input){
ListNode first = null,last = null,newNode;
int num;
if(input.length>0){
for(int i=0;i<input.length;i++){
newNode=new ListNode(input[i]);
newNode.nextNode=null;
if(first==null){
first=newNode;
last=newNode;
}
else{
last.nextNode=newNode;
last=newNode;
}
}
}
return first;
}
private static ListNode removeElements(ListNode head,int val){
if(head==null){
return null;
}
ListNode p=head,q=head.nextNode;
while(q!=null){
if(q.val==val){
p.nextNode=q.nextNode;
q=q.nextNode;
}else{
p=p.nextNode;
q=q.nextNode;
}
}
if(head.val==val){
return head.nextNode;
}
return head;
}
}
今天的文章Java链表ListNode_java中基于链表的集合分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/69301.html