链表——双向链表

每个节点即有指向前一个节点的地址,还有指向后一个节点的地址;

这里写图片描述

/**
 * @ClassName BothwayList
 * @Description 双向链表
 * @Author lzq
 * @Date 2018/5/7 20:14
 * @Version 1.0
 **/
public class BothwayList {
    class Entry {
        private int data;
        private Entry prev;  //前驱
        private Entry next;  //后继

        public Entry() {
            this.data = -1;
            this.next = null;
            this.prev = null;
        }

        public Entry(int val) {
            this.data = val;
            this.next = null;
            this.prev = null;
        }
    }
    private Entry head;

    public BothwayList(){
        this.head = new Entry();
    }

    /**
     * 头插法
     * @param val
     */
    public void head_insert(int val) {
        Entry entry = new Entry(val);
        entry.next = this.head.next;
        this.head.next = entry;
        entry.prev = this.head;
        if(entry.next != null) {
            entry.next.prev = entry;
        }
    }

    /**
     * 尾插法
     * @param val
     */
    public void tail_insert(int val) {
        Entry entry = new Entry(val);
        Entry cur = this.head;
        while(cur.next != null) {
            cur = cur.next;
        }
        cur.next = entry;
        entry.prev = cur;
    }

    /**
     * 删除所有值为val的节点
     * @param val
     */
    public void delete(int val) {
        Entry cur = this.head;
        while(cur.next != null) {
            if(cur.next.data == val) {
                cur.next = cur.next.next;
                if(cur.next != null) {
                    cur.next.prev = cur;
                }
                continue;
            }
            cur = cur.next;
        }
    }

    /**
     * 打印
     */
    public void show() {
        Entry cur = this.head;
        while(cur.next != null) {
            cur = cur.next;
            System.out.print(cur.data+"\t");
        }
        System.out.println();
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值