コード例 #1
0
ファイル: Stack.py プロジェクト: robgoyal/PersonalAlgosDS
    def __init__(self):
        '''
        Initializes an empty stack with no nodes.

        Inherited Attributes:
            - head
            - _length
        '''
        LinkedList.__init__(self)
コード例 #2
0
ファイル: Deque.py プロジェクト: robgoyal/PersonalAlgosDS
    def __init__(self):
        '''
        Initializes an empty deque with no items

        Inherited Attributes:
            - head
            - _length
        '''

        LinkedList.__init__(self)