剑指offer_复杂链表的复制

题目
输入一个复杂链表(每个节点中有节点值,以及两个指针,一个指向下一个节点,另一个特殊指针random指向一个随机节点),请对此链表进行深拷贝,并返回拷贝后的头结点。(注意,输出结果中请不要返回参数中的节点引用,否则判题程序会直接返回空)
知识点
链表
思路
根据next的顺序,new新的结点,先把顺序链表创建出来;
再从头遍历一遍,将random结点的值l找到,在新链表中遍历找到与l相等的值的结点,并用newNode.random连接;
遍历结束后返回newHead。
代码

/*
public class RandomListNode {
    int label;
    RandomListNode next = null;
    RandomListNode random = null;

    RandomListNode(int label) {
        this.label = label;
    }
}
*/
public class Solution {
    public RandomListNode Clone(RandomListNode pHead)
    {
        
        if(pHead==null) return null;
        RandomListNode newHead = new RandomListNode(pHead.label);
        RandomListNode newNode = newHead; 
        RandomListNode cur = pHead.next;
        while(cur!=null){
            newNode.next = new RandomListNode(cur.label);
            newNode = newNode.next;
            cur = cur.next;
        }
        cur = pHead;
        newNode = newHead;
        while(cur!=null){
            RandomListNode random = cur.random;
            if(random!=null){
                int l = random.label;
                RandomListNode temp = newHead;
                while(temp!=null){
                    if(temp.label==l){
                        newNode.random = temp;
                        break;
                    }temp = temp.next;
                }
            }newNode = newNode.next;
            cur = cur.next;
        }
        return newHead;
    }
}
上一篇:SWFUpload免费FLASH上传组件(ASP修改版)


下一篇:关于链表