栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

Java小练习,双向链表实现

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Java小练习,双向链表实现

import java.lang.*;

public class MainJava {
    public static void main(String[] args) {
        TList list = new TList();
        for(int i = 0; i < 10; i++){
            list.push_back(i);
        }
        for(int i = -1; i >= -10; i--){
            list.push_front(i);
        }
        list.print();
    }
}
class Node{
    public int val;
    public Node next;
    public Node pre;
    public Node(int val){
        this.val = val;
    }
}
class TList{
    private Node tail;
    private Node head;
    public TList(){
        head = null;
        tail = null;
    }
    public void pop_front(){
        head = head.next;
        head.pre = null;
    }
    public void pop_back(){
        tail = tail.pre;
        tail.next = null;
    }
    public void push_back(int val){
        if(head == null){
            head = new Node(val);
            tail = head;
        }
        else {
            tail.next = new Node(val);
            tail.next.pre = tail;
            tail = tail.next;
        }
    }
    public void push_front(int val){
        if(head == null){
            head = new Node(val);
            tail = head;
        }
        else{
            head.pre = new Node(val);
            head.pre.next = head;
            head = head.pre;
        }
    }
    public void print(){
        Node ptr = this.head;
        System.out.print('[');
        while(ptr!=null) {
            System.out.print(ptr.val);
            if(ptr.next!=null)
                System.out.print(", ");
            ptr = ptr.next;
        }
        System.out.println(']');
    }
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/734948.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号