📌  相关文章
📜  用于克隆具有 Next 和随机指针的链表的Java程序集 2

📅  最后修改于: 2022-05-13 01:57:44.463000             🧑  作者: Mango

用于克隆具有 Next 和随机指针的链表的Java程序集 2

我们已经讨论了克隆链表的两种不同方法。在这篇文章中,讨论了一种更简单的克隆链表的方法。

这个想法是使用散列。下面是算法。

  1. 遍历原始链表,在数据方面进行复制。
  2. 用原始链表节点和复制的链表节点制作键值对的哈希映射。
  3. 再次遍历原始链表并使用哈希图调整克隆链表节点的下一个和随机引用。

下面是上述方法的实现。

Java
// Java program to clone a linked list 
// with random pointers
import java.util.HashMap;
import java.util.Map;
  
// Linked List Node class
class Node
{
    // Node data
    int data;
  
    // Next and random reference
    Node next, random;
  
    // Node constructor
    public Node(int data)
    {
        this.data = data;
        this.next = this.random = null;
    }
}
  
// Linked list class
class LinkedList
{
    // Linked list head reference
    Node head;
  
    // Linked list constructor
    public LinkedList(Node head)
    {
        this.head = head;
    }
  
    // Push method to put data always 
    // at the head in the linked list.
    public void push(int data)
    {
        Node node = new Node(data);
        node.next = this.head;
        this.head = node;
    }
  
    // Method to print the list.
    void print()
    {
        Node temp = head;
        while (temp != null)
        {
            Node random = temp.random;
            int randomData = ((random != null) ? 
                               random.data : -1);
            System.out.println("Data = " + temp.data + 
                               ", Random data = " + 
                               randomData);
            temp = temp.next;
        }
    }
  
    // Actual clone method which returns head
    // reference of cloned linked list.
    public LinkedList clone()
    {
        // Initialize two references, one with 
        // original list's head.
        Node origCurr = this.head, 
             cloneCurr = null;
  
        // Hash map which contains node to node 
        // mapping of original and clone linked list.
        Map map = new HashMap();
  
        // Traverse the original list and make a 
        // copy of that in the clone linked list.
        while (origCurr != null)
        {
            cloneCurr = new Node(origCurr.data);
            map.put(origCurr, cloneCurr);
            origCurr = origCurr.next;
        }
  
        // Adjusting the original list 
        // reference again.
        origCurr = this.head;
  
        // Traversal of original list again to 
        // adjust the next and random references 
        // of clone list using hash map.
        while (origCurr != null)
        {
            cloneCurr = map.get(origCurr);
            cloneCurr.next = 
            map.get(origCurr.next);
            cloneCurr.random = 
            map.get(origCurr.random);
            origCurr = origCurr.next;
        }
  
        // Return the head reference of the 
        // clone list.
        return new LinkedList(map.get(this.head));
    }
}
  
// Driver Class
class Main
{
    // Main method.
    public static void main(String[] args)
    {
        // Pushing data in the linked list.
        LinkedList list = 
        new LinkedList(new Node(5));
        list.push(4);
        list.push(3);
        list.push(2);
        list.push(1);
  
        // Setting up random references.
        list.head.random = 
        list.head.next.next;
        list.head.next.random =
        list.head.next.next.next;
        list.head.next.next.random =
        list.head.next.next.next.next;
        list.head.next.next.next.random =
        list.head.next.next.next.next.next;
        list.head.next.next.next.next.random =
        list.head.next;
  
        // Making a clone of the original 
        // linked list.
        LinkedList clone = list.clone();
  
        // Print the original and cloned 
        // linked list.
        System.out.println(
               "Original linked list");
        list.print();
        System.out.println(
               "Cloned linked list");
        clone.print();
    }
}


输出:

Original linked list
Data = 1, Random data = 3
Data = 2, Random data = 4
Data = 3, Random data = 5
Data = 4, Random data = -1
Data = 5, Random data = 2

Cloned linked list
Data = 1, Random data = 3
Data = 2, Random data = 4
Data = 3, Random data = 5
Data = 4, Random data = -1
Data = 5, Random data = 2

时间复杂度: O(n)
辅助空间: O(n)
请参考完整的文章 Clone a linked list with next and random pointer |设置2了解更多详情!