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 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦