尽管我已经定义了函数,但是代码有什么问题呢?

时间:2019-07-04 20:03:25

标签: python python-3.6

这段代码给出了NameError,表明我尚未定义函数,但实际上是在类中定义了函数。

我尝试了很多但无法解决。

class Node(object):
    def __init__(self, data):
        self.data = data
        self.next = None

class LinkedList(object):
    def __init__(self):
        self.head = None

    def printList(self):
        temp = self.head
        while temp:
            print(temp.data)
            temp = temp.next

    def append(self, new_data):
        new_node = Node(new_data)
        if self.head is None:
            self.head = new_node
            return
        last = self.head
        while last.next:
            last = last.next
            last.next = new_node

    def merge(self, head1, head2):
        temp = None
        if head1 is None:
            return head2

        if head2 is None:
            return head1

        if head1.data <= head2.data:
            temp = head1
            temp.next = merge(head1.next, head2)

        else:
            temp = head2
            temp.next = merge(head1, head2.next)

        return temp

list1 = LinkedList()
list1.append(10)
list1.append(20)
list1.append(30)
list1.append(40)
list1.append(50)

list2 = LinkedList()
list2.append(5)
list2.append(15)
list2.append(18)
list2.append(35)
list2.append(60)

list3 = LinkedList()
list3.head = merge(list1.head, list2.head)

print("Merged Linked List is : ")
list3.printList()
NameError                                 Traceback (most recent call last)
<ipython-input-11-22fca0a2d24d> in <module>()
     57 
     58 list3 = LinkedList()
---> 59 list3.head = merge(list1.head, list2.head)
     60 
     61 print("Merged Linked List is : ")

NameError: name 'merge' is not defined

1 个答案:

答案 0 :(得分:1)

您已将merge定义为LinkedList类的方法。这意味着您需要在类的实例上调用它,而不仅仅是它本身。例如,您可以将导致当前异常的merge(...)调用替换为list3.merge(...),并将方法内部的递归调用替换为self.merge(...)

但是我不太确定它是否必须是一种方法,因此您可以将函数定义移出类(并删除其self参数)。它可以作为独立功能正常工作。