单链表的删除

import java.util.Stack;

public class LinkedList {

    class Node{
        int data;
        Node next;
        public Node(int data) {
            this.data=data;
        }
    }

    //删除单链表的指定节点
    public static void deleteNode(Node head,Node node) {
        //如果删除的节点是尾节点
        if (node.next==null) {
            while(head.next!=node) {
                head=head.next;
            }
            head.next=null;
        }

        //如果删除的节点是头结点
        else if(head==node) {
            head=null;
        }

        //如果删除的是中间节点
        else {
            Node p = node.next;
            node.data=p.data;
            node.next=p.next;

        }
    }



    //删除单链表中指定数值的节点,利用栈
    public static Node removeValues(Node head,int num) {

        Stack<Node> stack = new Stack<Node>();
        //将不等于num的节点,放入到栈中
        while(head!=null) {
            if (head.data!=num) {
                stack.push(head);
            }
            head = head.next;
        }
        //将栈组成新的链表
        if (stack!=null) {
            while(head!=null) {
                stack.peek().next=head;
                head=stack.pop();
            }
        }
        return head;

    }

    //删除单链表中指定数值的节点,不用栈
    public static Node removeValues2(Node head,int num) {
        //找到第一个不等于num的节点作为头结点
        while(head!=null) {
            if (head.data!=num) {
                break;
            }
            head=head.next;
        }
        Node pre = head;
        Node cur = head;
        while(cur!=null) {
            if (cur.data==num) {
                pre.next = cur.next;
            }else {
                pre = cur;
            }
            cur = cur.next;
        }
        return head;
    }

}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值