C语言 如何将一个链表复制到另一个链表中?

p8h8hvxi  于 2023-04-29  发布在  其他
关注(0)|答案(4)|浏览(317)

我正在学习数据结构和链表,但我没有得到如何复制链表的概念。有人能解释一下吗,可能是用伪代码或C代码?

k4aesqcs

k4aesqcs1#

复制链表的逻辑是递归的,并且基于以下观察:
1.空列表的克隆就是空列表。
1.具有第一个节点x和剩余节点xs的列表的克隆是x的副本前置到xs的克隆。
如果你在C++中编码链表,这可能是非常干净的:

struct Node {
    int value;
    Node* next;
};

Node* Clone(Node* list) {
    if (list == NULL) return NULL;

    Node* result = new Node;
    result->value = list->value;
    result->next = Clone(list->next);
    return result;
}
7bsow1i6

7bsow1i62#

您了解如何向现有列表中添加新节点吗?“你知道怎么做吗?即迭代)列表?复制一个列表就是同时执行这两个操作(遍历ListA;对于每个元素,复制该元素并将其作为新节点添加到列表B)。

2w2cym1i

2w2cym1i3#

这篇文章的答案已经给出并被接受了--一切都很好!然而,如果有人正在寻找**C#**中的迭代方法,那么它就是:

Node类:

public class Node
{
    public Node(int val)
    {
        Val = val;
    }

    public Node Next { get; set; }
    public int Val { get; }
}

下面是迭代实现:

public Node CopyLinkedListIteratively(Node head)
{
    // validation:
    if (head == null) return null;

    // current node is always a 'new' node with value.
    Node currentNode = new Node(head.Val);

    // set copyList and previous to current node to start with - which is true at this point in time!
    Node copyList = currentNode;
    Node previous = currentNode;
    
    // move head one step forward as we already have copied its value.
    head = head.Next;

    // keep moving until we hit a null reference which is the end.
    while (head != null)
    {
        currentNode = new Node(head.Val); // create a new node every time as we move forward.
        previous.Next = currentNode; // set previous node's next to current node as previous node itself is one step behind the current.
        previous = previous.Next; // move prev pointer forward
        head = head.Next; // move head pointer forward as well
    }

    // return the reference to copyList.
    // copyList and previous both started off pointing to the currentNode, then in the while loop
    // previous kept moving forward till all nodes are copied.
    // copyList reference never moved from its position so its still pointing at the start.
    return copyList;
}

时间复杂度:O(n)
空间复杂度:O(n)
其中n =链表中的节点数。
我个人倾向于使用递归或迭代方法,但是我建议在使用递归时考虑函数调用堆栈。

单元测试:

[Test]
public void CopyLinkedListIterativelyTest()
{
    Node head = new Node(1);
    head.Next = new Node(2);
    head.Next.Next = new Node(3);
    head.Next.Next.Next = new Node(4);
    head.Next.Next.Next.Next = new Node(5);

    var actual = runner.CopyLinkedListIteratively(head);

    while (actual != null)
    {
        Assert.AreEqual(head.Val, actual.Val);
        actual = actual.Next;
        head = head.Next;
    }
}
balp4ylt

balp4ylt4#

Java版本的递归克隆解决方案。
伪代码:
1.每个节点都是一个新初始化的节点
1.递归调用clone函数为每个节点创建一个新节点
程序[JAVA]:

public class Program
{
    public static void main(String[] args) {
        ListNode node5 = new ListNode(5,null);
        ListNode node4 = new ListNode(4,node5);
        ListNode node3 = new ListNode(3,node4);
        ListNode node2 = new ListNode(2,node3);
        ListNode node1 = new ListNode(1,node2);
        ListNode head = node1;
        //Printing to display the address
        System.out.println(head +"->" + head.next + "->" + head.next.next + "->" + head.next.next.next + "->" + head.next.next.next.next + "->" + head.next.next.next.next.next);
        ListNode newClone = Clone(head);
        while(newClone.next != null){
            System.out.print(newClone.getAddress() + "->");
            newClone = newClone.next;
        }
    }

    public static class ListNode {
        int val;
        ListNode next;
        ListNode() {}
        ListNode(int val) { this.val = val; }
        ListNode(int val, ListNode next) { this.val = val; this.next = next; }
        ListNode getAddress() {return this; }
    }

    public static ListNode Clone(ListNode nextNode) {
        if (nextNode == null) return nextNode;    
        ListNode newNode = new ListNode();
        newNode.val = nextNode.val;
        newNode.next = Clone(nextNode.next);
        return newNode;
    }
}

相关问题