摘要:
1 /** 2 * Definition for singly-linked list with a random pointer. 3 * class RandomListNode { 4 * int label; 5 * RandomListNode next, random; 6 * RandomListNode(int x) { this.label = x; } 7 * }; 8 */ 9 public class Solution {10 public RandomListNode copyRandomList(RandomListN... 阅读全文
posted @ 2013-12-01 13:18
JasonChang
阅读(358)
评论(0)
推荐(0)
浙公网安备 33010602011771号