수색…


파이썬에서 간단한 링크드리스트 노드 작성하기

연결된 목록은 다음 중 하나입니다.

  • 없음으로 표시된 빈 목록
  • 화물 객체와 연결된 목록에 대한 참조를 포함하는 노드입니다.
#! /usr/bin/env python

class Node: 
      def __init__(self, cargo=None, next=None): 
          self.car = cargo 
          self.cdr = next    
      def __str__(self): 
          return str(self.car)


      def display(lst):
          if lst:
             w("%s " % lst)
             display(lst.cdr)
          else:
             w("nil\n")


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow