由买买提看人间百态
登录
首页
论坛
未名存档
话题女王
小圈子
马甲追踪
版面排名
流量曲线
水枪排名
发帖量曲线
发帖版面饼图
发帖时间柱图
关于本站
帮助
boards
本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字
访问原贴
JobHunting版
- Leetcode Copy List with Random Pointer Runtime Error?
相关主题
●
哪位大侠帮我看看这个code
●
新题gas station,献丑了,没过一个case,帮看看
●
Leetcode新题 Copy List with Random Pointer
●
copy link with random additional pointers
●
leetcode Copy List with Random Pointer
●
reverse random pointers of a single linked list
●
各位刷友,leetcode里的题目:Copy List with Random Pointer
●
这段代码在leetcode上面跑不了??
●
copy list with random pointer 老出错
●
leetcode 上通不过
●
请教下copy list with random pointer
●
leetcode pow runtime error??
●
求救! Copy List With Random Pointer总是超时
●
leetcode Parlindrome Partition run time error
●
请问大牛们如何提高解决leetcode上面Linkedlist的题的能力?
●
请教LEETCODE讲解部分的LCA一道题的变种。。
相关话题的讨论汇总
话题: pointer
话题: res
话题: null
话题: next
进入JobHunting版参与讨论
1
(共1页)
S********0
发帖数: 29
1
话不多说直接上代码,在本地测了没发现问题。。
谢谢.....
public static RandomListNode copyRandomList(RandomListNode head) {
// Note: The Solution object is instantiated only once and is reused
by each test case.
if(head == null) return null;
RandomListNode pointer, res_pointer;
pointer = head;
while(pointer != null){
RandomListNode temp = new RandomListNode(pointer.label);
temp.random = null;
temp.next = pointer.next;
RandomListNode next = pointer.next;
pointer.next = temp;
pointer = next;
}
pointer = head;
while(pointer != null){
pointer.next.random = pointer.random.next;
pointer = pointer.next.next;
}
pointer = head;
RandomListNode res = head.next;
res_pointer = res;
while(pointer != null && res_pointer != null){
pointer.next = pointer.next.next;
if(res_pointer.next != null) res_pointer.next = res_pointer.next
.next;
pointer = pointer.next;
res_pointer = res_pointer.next;
}
return res;
}
c********w
发帖数: 2438
2
第二个while循环
copy random的时候
如果原random是null怎么办
不就run time error了
所以要处理
if(pointer.random!=null)
S********0
发帖数: 29
3
谢谢,我真是粗心。
1
(共1页)
进入JobHunting版参与讨论
相关主题
●
请教LEETCODE讲解部分的LCA一道题的变种。。
●
copy list with random pointer 老出错
●
leetcode彻底挂了么
●
请教下copy list with random pointer
●
LeetCode Jump Game [Runtime Error]
●
求救! Copy List With Random Pointer总是超时
●
LeetCode RunTime Error一问
●
请问大牛们如何提高解决leetcode上面Linkedlist的题的能力?
●
哪位大侠帮我看看这个code
●
新题gas station,献丑了,没过一个case,帮看看
●
Leetcode新题 Copy List with Random Pointer
●
copy link with random additional pointers
●
leetcode Copy List with Random Pointer
●
reverse random pointers of a single linked list
●
各位刷友,leetcode里的题目:Copy List with Random Pointer
●
这段代码在leetcode上面跑不了??
相关话题的讨论汇总
话题: pointer
话题: res
话题: null
话题: next
未名新帖统计
// 7月16日
#
版面
帖数(主题数)
-
全站
4871 (796)
1
Military
3777 (569)
2
Stock
341 (51)
3
Joke
117 (17)
4
History
116 (3)
5
Automobile
100 (9)
6
USANews
55 (9)
7
Midlife
45 (1)
8
Headline
41 (41)
9
Dreamer
33 (13)
10
FleaMarket
32 (20)
11
Living
30 (7)
* 这里只显示发帖超过25的版面,努力灌水吧:-)
历史上的今天
faintcat妹妹看进来~~
发表于12年前.
NSC, PD 1/7/2007, EB2, ...
发表于11年前.
[FBA求购]MJVE2 758 MJVM2 ...
发表于6年前.
老生常谈,归与不归
发表于10年前.
【申请】Seattle西雅图 版版主——申请人...
发表于9年前.
宝宝出生,头骨骨折,求祝福
发表于9年前.
求推荐舒缓优美的古典音乐
发表于11年前.
百分之一的北京人上北大 中国网友愤怒(转载)
发表于10年前.
新人带狗狗Bailey来报道
发表于12年前.
全世界最有价值的运动队
发表于10年前.
请问大切诺基的质量如何
发表于6年前.
TNND,军版全是BKC
发表于15年前.
Inception
发表于12年前.
微软的有些家属可真恶心,为了卖保险脸都不要了
发表于10年前.
每周坐高铁的苦逼来说说感受吧!!
发表于9年前.