可以递归 ''' 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; } '''
点赞

相关推荐

球球offer到我邮箱吧:同测评了一个月 亏我笔试还AK了
投递米哈游等公司7个岗位 > 米哈游求职进展汇总
点赞 评论 收藏
分享
牛客网
牛客企业服务