继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

剑指offer

萌萌小温柔
关注TA
已关注
手记 306
粉丝 56
获赞 401

         

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;	}}


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP