算法:java 单链表多链表逆序

本文介绍了Java中单链表和双链表的逆序操作,包括`reverseLinkedList`和`reversDoubleList`方法,以及在`main`函数中的应用实例。
摘要由CSDN通过智能技术生成
public class List {

public static  class  Node
{
    public  int value;
    public  Node next;

    public Node(int data)
    {
        value=data;
    }
}

public  static  class DoubleNode
{
    public  int value;
    public  DoubleNode last;
    public  DoubleNode next;

    public  DoubleNode(int data)
    {
        value=data;
    }
}

public static  Node reverseLinkedList(Node head)
{//单链表找到新的逆序后的头部
    Node pre=null;
    Node next=null;
    while (head!=null)//可达
    {
        next=head.next;
        head.next=pre;
        pre=head;
        head=next;
    }
    return pre;
}
    public static  DoubleNode reversDoubleList(DoubleNode head)
            //双链表逆序
    {
        DoubleNode pre=null;
        DoubleNode next=null;
        while (head!=null)
        {
            next=head.next;
            head.next=pre;
            head.last=next;
            pre=head;
            head=next;
        }
        return pre;
    }

    public static void main(String[] args) {
        Node n1=new Node(1);
        n1.next=new Node(2);
        n1.next.next=new Node(3);
        n1=reverseLinkedList(n1);
        while(n1!=null)
        {
            System.out.println(n1.value+" ");
            n1=n1.next;
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值