无傀儡节点链表增删改查及序列化实现

无傀儡节点链表增删改查及序列化实现

class Node2{
    int val;
    Node2 next;
    public Node2(int val){
        this.val=val;
    }
}
class LinkedList{
    private Node2 head=null;
    //增删改查
    //添加节点
    public boolean add(int val){
        if (head==null){
            head=new Node2(val);
            return true;
        }
        //遍历链表找到最后节点,在其后面添加节点
        Node2 cur=head;
        while(cur.next!=null){
            cur=cur.next;
        }
        cur.next=new Node2(val);
        return true;
    }
    //删除节点
    //根据元素值
    public boolean delete(int val){
        if(head==null)
            return false;
        Node2 pre=new Node2(0);
        Node2 cur=head;
        pre.next=cur;
        //遍历链表查询对应val值
        while(cur!=null){
            if (cur.val==val){
                //找到元素,删除
                pre.next=cur.next;
                return true;
            }else{
                //更新指针
                pre=cur;
                cur=cur.next;
            }
        }
        return false;
    }
    //修改节点值
    //将val值改为elem
    public boolean modify(int elem,int val){
        if (head==null)
            return false;
        Node2 cur=head;
        //遍历链表查询对应value值
        while(cur!=null){
            if(cur.val==val){
                cur.val=elem;
                return true;
            }else{
                cur=cur.next;
            }
        }
        return false;
    }
    //根据val值判断节点是否存在
    public boolean contain(int val){
        if (head==null)
            return false;
        Node2 cur=head;
        while(cur!=null){
            if (cur.val==val){
                return true;
            }else{
                cur=cur.next;
            }
        }
        return false;
    }
    //链表序列化
    public String toString(){
        StringBuffer res=new StringBuffer();
        if(head==null)
            return res.toString();
        res.append("[");
        Node2 cur=head;
        while(cur!=null){
            if(cur.next==null){
                res.append(cur.val);
            }else{
                res.append(cur.val+",");
            }
            cur=cur.next;
        }
        res.append("]");
        return res.toString();
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值