标题:Python嵌套类实现单链表
只看楼主
bubble_soup
Rank: 1
等 级:新手上路
帖 子:39
专家分:0
注 册:2018-1-21
结帖率:0
 问题点数:0 回复次数:0 
Python嵌套类实现单链表
def append(self, item):
        if self.head is None or self.head is None:
            return None
        node = head.next
        while node.next
            node = node.next
        node.next = item
==========================
现在外部类是LinkedList:
init方法中有head属性。
内层类是Node。
init方法有data、next属性。
关键是append方法定义在外层,内部的next不可见。
问题是怎么样修改该方法让append可行??
搜索更多相关主题的帖子: 嵌套 head node next 方法 
2018-04-11 13:20



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-485961-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.400731 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved