可以递归 ''' public ListNode ReverseList(ListNode head) { if (head == null) return null; if (head.next == null) return head; ListNode last = ReverseList(head.next); head.next.next = head; head.next = null; return last; } '''
点赞

相关推荐

点赞 评论 收藏
分享
牛客网
牛客企业服务