92. Reverse Linked List II
Posted 鸵鸟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了92. Reverse Linked List II相关的知识,希望对你有一定的参考价值。
class Solution { public ListNode reverseBetween(ListNode head, int m, int n) { ListNode pre=new ListNode(0); pre.next=head; ListNode p=pre; for(int i=0;i<m-1;i++) p=p.next; int s=n-m; ListNode q=p.next; while(s>0) { ListNode r=q.next; q.next=q.next.next; r.next=p.next; p.next=r; s--; } return pre.next; } }
以上是关于92. Reverse Linked List II的主要内容,如果未能解决你的问题,请参考以下文章
#Leetcode# 92. Reverse Linked List II