当前位置:   article > 正文

反转单链表(递归,JAVA)_java递归反转单向链表

java递归反转单向链表

Eg:
链表:1->2->3->4 经过反转后 4->3->2->1
递归实现

public class FanZhuanList {
	public static void main(String[] args) {
		Node first = new Node();
		Node second = new Node();
		Node third = new Node();
		Node forth = new Node();
		
		first.data = 1;          //初
		first.next = second;
		
		second.data = 2;         //始
		second.next = third;    
		
		third.data = 3;          //化
		third.next = forth;      //链
		
		forth.data = 4;
		forth.next = null;       //表
		
		Node k = first.reserseList(first);//反转的方法
		k.getList(k);
	}
	
	
}

class Node{
	int data;
	Node next;
	
	//反转函数
	Node reserseList(Node head) {
		if(head == null || head.next == null) {
			return head;
		}//当链表是一个或者没有就应当直接返回
		Node newList = reserseList(head.next); //创建一个新的链表,存放反转后的链表
		Node t1 = head.next; //接下来这三步就是通过引入新的结点来反转链表
		t1.next = head;
		head.next = null;
		return newList;
	}
	
	//输出函数
	public void getList(Node node) {
		while(node != null) {
			System.out.println(node.data);
			node = node.next;
		}
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/781678
推荐阅读
相关标签
  

闽ICP备14008679号