206. 反转链表

☆樱花仙子☆ 提交于 2020-03-08 10:45:39

反转一个单链表。

示例:

输入: 1->2->3->4->5->NULL
输出: 5->4->3->2->1->NULL
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode reverseList(ListNode head) {
        ListNode root = null;;
        return Reverse(head, root);
        
    }
    public ListNode Reverse(ListNode head, ListNode returnNode)
    {
        if(head == null)
            return returnNode;
        ListNode next = head.next;
        head.next = returnNode;
        return Reverse(next, head);
    }

}  
今日一句:女神节快乐!
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!