摘要: k个元素一组指针反转函数调用问题!!!! 1 /** 2 * Definition for singly-linked list. 3 * public class ListNode { 4 * int val; 5 * ListNode next; 6 * ListNode(int x) { 7 * val = x; 8 * next = null; 9 * }10 * }11 */12 public class Solution {13 public ListNode reverseKGroup(L... 阅读全文
posted @ 2013-07-19 20:13 feiling 阅读(270) 评论(0) 推荐(0) 编辑