剑指offer25

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer25相关的知识,希望对你有一定的参考价值。

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


以上是关于剑指offer25的主要内容,如果未能解决你的问题,请参考以下文章

剑指Offer打卡25.合并两个排序的链表

剑指Offer打卡25.合并两个排序的链表

剑指Offer 25

剑指offer 21-25

剑指offer 21-25

剑指offer25