当前位置:   article > 正文

链表面试题------Java 删除链表中值为 val 的元素_java 链表的val

java 链表的val

1.题目描述: 删除链表中值为 val 的元素

思路:

方法一:

1. 遍历原链表,如果与val值相等,则删除
	特殊情况:链表为空时,怎么办
			第一个节点head的值,如果等于val,怎么办
2. 需要两个指针,一个 cur 遍历整个链表
			一个为 perv  记录 遍历的cur 的 前一个节点(如果遇到需要删除的结点,
			需要知道此节点的前一个节点,所以需要prev)	
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6



//定义节点
class Node {
    int val;
    Node next = null;

    Node(int val){
        this.val = val;
    }

    //打印链表
    @Override
    public String toString() {
        return String.format("Node(%d)",val);
    }
}
public class Practice{
    public static Node removeElements(Node head,int val){
        //如果链表为空,直接返回null
        if(head == null){
            return null;
        }
        //指向  cur 的前一个节点
        Node prev = head;
        //cur 用于 遍历整个链表
        Node cur = head;

        while(cur != null){
            if(cur.val == val){
                prev.next = cur.next;
            }else{
                prev = cur;
            }
            cur = cur.next;
        }

        //如果 head 的值为 val,让 head 指向 head 的 下一个元素
        if(head.val == val){
            head = head.next;
        }
        return head;
    }

    //测试方法   创建一个链表
    private static Node test(){
        Node n1 = new Node(1);
        Node n2 = new Node(2);
        Node n3 = new Node(1);
        Node n4 = new Node(3);
        n1.next = n2;
        n2.next = n3;
        n3.next = n4;
        return n1;
    }

    public static void main(String[] args) {
        //删除 val 值 为 1 的 节点
        Node head = removeElements(test(),1);
        for(Node cur = head;cur != null;cur = cur.next){
            System.out.println(cur);
        }
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66

运行结果

在这里插入图片描述

方法二:

1.定义一个结果链表result
2.last-------> 指向结果链表的最后一个元素
3.cur-------->用来遍历原链表
  • 1
  • 2
  • 3

思路:

1.如果cur的值与cur不相等
	1.1如果链表为空,让result 指向 cur
	1.2如果链表不为空,让last.next = cur;
  last = cur,使last 指向新链表的最后一个节点
 2.如果cur的值与cur相等
 	让 cur = cur.next;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

代码:

public class Practice3 {
    public static Node removeElements(Node head,int val){
        Node cur = head;
        Node result = null;
        Node last = null;

        while(cur != null){
            if(cur.val != val) {
                if(result == null){
                    result = cur;
                }else{
                    last.next = cur;
                }
                last = cur;
            }
            cur = cur.next;
        }
        if(last != null){
            last.next = null;
        }
        return result;
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

结果:

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/算法创新者/article/detail/60462
推荐阅读
相关标签
  

闽ICP备14008679号