链表的基本操作-增删查逆序

import java.util.*;
public class Lianbiao {
    public static void main(String args[]){
        Scanner in=new Scanner(System.in);
        ListNode head=new ListNode(0);
        head.next=null;
        ListNode head2=head;
        int n=in.nextInt();
        //插入链表尾部
        for(int i=0;i<n;i++){
            int value=in.nextInt();
            ListNode temp=new ListNode(value);
            temp.next=null;
            head2.next=temp;
            head2=head2.next;
        }
        print(head);
        DeleteNode(head,2);
        print(head);
        InsertNode(head,2,8);
        print(head);
        ReverseNode(head);
        print(head);
        System.out.println(getNode(head,3));
    }
    //删除一个节点
    public static void DeleteNode(ListNode head,int pos){
        ListNode head2=head;
        for(int i=0;i<pos-1;i++){
            head=head.next;
        }
        head.next=head.next.next;
        head=head2;
    }
    //插入一个节点
    public static void InsertNode(ListNode head,int pos,int value){
        ListNode head2=head;
        for(int i=0;i<pos-1;i++){
            head=head.next;
        }
        ListNode newNode=new ListNode(value);
        newNode.next=head.next;
        head.next=newNode;
        head=head2;
    }
    //链表反转
    public static void ReverseNode(ListNode head){
        ListNode head2=head.next;
        List list=new ArrayList<Integer>();
        while(head2!=null){
            list.add(head2.value);
            head2=head2.next;
        }
        head2=head;
        for(int i=list.size()-1;i>=0;i--){
            ListNode temp=new ListNode((int)list.get(i));
            temp.next=null;
            head2.next=temp;
            head2=head2.next;
        }
    }
    //查询一个节点
    public static int getNode(ListNode head,int pos){
        ListNode head2=head;
        for(int i=0;i<pos;i++){
            head2=head2.next;
        }
        return head2.value;
    }
    //打印
    public static void print(ListNode head){
        ListNode head0=head;
        head0=head0.next;
        while(head0!=null){
            System.out.print(head0.value+" ");
            head0=head0.next;
        }
        System.out.println();
    }
}
class ListNode{
    int value;
    ListNode(int value){
        this.value=value;
    }
    ListNode next;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值