摘要:
1 public class Solution { 2 public ListNode reverseKGroup(ListNode head, int k) { 3 // Start typing your Java solution below 4 // DO NOT write main() function 5 6 if(head == null || k == 1) 7 return head; 8 9 int len = 0;10 ... 阅读全文
posted @ 2013-11-19 16:44
JasonChang
阅读(161)
评论(0)
推荐(0)