数据结构之单向链表

链表是由许多相同数据类型的元素按照特定的顺序排列而成的线性表,其特性是在计算机内存中的位置是不连续与随机存储的。
优点:数据的插入或者删除都相当方便,有新数据加入就向系统要一块内存空间,数据删除后,就把空间还给系统,不需要移动大量数据。
缺点:设计数据结构时较为麻烦,另外查找数据时,也无法向静态数据一样可随机读取数据,必须按照顺序找到该数据为止。
由于java中没有指针类型,我们可以声明链表LInkedList类。而要模拟链表中的节点,必须声明Node类节点可以不只记录单一数值,也可包含其他的属性。关于链表的操作具体代码如下所示。

package LinkedList;
//模拟链表中的节点
class Node{
    int data;
    Node next;
    public Node(int data){
        this.data=data;
        this.next=null;
    }

}
public class LinkedList {
    //点一两个节点类型的节点指针,分别指向链表的第一个节点和最后一个节点。
    private Node first;
    private Node last;
    //用来判断目前的链表是否是空链表
    public boolean isEmpty(){
        return first==null;
    }
    //用来将目前的链表打印出来
    public void print(){
        Node current=first;
        while(current!=null){
            System.out.print("["+current.data+"]"+"\t");
            current=current.next;
        }
        System.out.println();
    }
    //构建一个链表
    public void insert(int data){
        Node newNode=new Node(data);
        if(this.isEmpty()){
            first=newNode;
            last=newNode;
        }else{
            last.next=newNode;
            last=newNode;
        }

    }
    //插入节点
    public void insert(Node ptr){
        //在第一个节点插入节点。1。吧新节点的指针指向表头,2,再把表头移到新节点上
        //在最后一个节点插入节点。1.把最后一个节点的指针移到新节点。上2.再把新节点指向null。
        //在列表中间位置插入节点。如果在X和Y间插入节点,1,X节点的指针指向新节点,2.新节点的指针指向Y节点。
        Node newNode;
        Node tmp;
        if(this.isEmpty()){
            first=ptr;
            last=ptr;
        }else{
            if(ptr.next==first){

            }
        }
    }
    //单链表的删除
    public void delete(Node delNode){
        //删除链表第一个指针,只要把链表的首指针指向第二个节点即可。
        //删除链表最后一个指针。只要将指向最后一个节点的值栈指向null即可。
        //删除中间节点,只需将删除节点的前一个节点的指针,指向删除节点的下一个节点即可。
        Node newNode;
        Node tmp ;

        if(first.data==delNode.data){
            first=first.next;
        }else if(last.data==delNode.data){
            newNode=first;
            while(newNode.next!=last){
                newNode=newNode.next;
            }
            newNode.next=last.next;
            last=newNode;
        }else{
            newNode=first;
            tmp=first;
            if(newNode.data!=delNode.data){
                tmp=newNode;
                newNode=newNode.next;
            }
            tmp.next=newNode.next;
        }
    }
    public void ReverseLinkedList(){
        //单向链表的反转。需要三个指针。
        Node current=first;
        Node before=null;
        System.out.println("反转后的列表");
        while(current!=null){
            last=before;
            before=current;
            current=current.next;
            before.next=last;
        }
        current=before;
        while(current!=null){
            System.out.print("["+current.data+"]"+"\t");
            current=current.next;
        }
        System.out.println();
    }
    public LinkedList Concatenate(LinkedList head1,LinkedList head2){
        //单向链表的串联,只要将列表的首尾相连即可。
        LinkedList ptr;
        ptr=head1;
        while(ptr.last.next!=null){
            ptr.last=ptr.last.next;
        }
        ptr.last.next=head2.first;
        return head1;

    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值