为了账号安全,请及时绑定邮箱和手机立即绑定

剑指offer

标签:
面试

         

package jianzhiOffer;/*** * 输入一个复杂链表(每个节点中有节点值,以及两个指针,一个指向下一个节点, * 另一个特殊指针指向任意一个节点), 返回结果为复制后复杂链表的head。 * (注意,输出结果中请不要返回参数中的节点引用,否则判题程序会直接返回空) * @author user  * 思路:假如原链表为A-->B-->C,我们可以先将链表变为A-->A`-->B-->B`-->C-->C` * 然后将链表进行拆分A`-->B`-->C`即为复制后的链表。这样的做法不需要辅助的空间 * 时间效率也很高 */class RandomListNode {	int label;	RandomListNode next = null;	RandomListNode random = null;	RandomListNode(int label) {		this.label = label;	}}public class ch25 {	public RandomListNode Clone(RandomListNode pHead) {		if (pHead == null)			return null;		// 原链表为A-->B-->C,将链表变为A-->A`-->B-->B`-->C-->C`		RandomListNode pCur = pHead;		while (pCur != null) {			RandomListNode node = new RandomListNode(pCur.label);			node.next = pCur.next;			pCur.next = node;			pCur = node.next;		}		// 随机结点的复制		pCur = pHead;		while (pCur != null) {			if (pCur.random != null)				pCur.next.random = pCur.random;			pCur = pCur.next.next;		}		//链表的拆分		RandomListNode head = pHead.next;		RandomListNode cur = head;		pCur = pHead;		while(pCur != null) {			pCur.next = pCur.next.next;			if(cur.next != null)				cur.next = cur.next.next;			pCur = pCur.next;			cur = cur.next;		}		return head;	}}


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消