과제-더블 링크드리스트 prepend

김오왼·2022년 2월 10일
0

자료구조

목록 보기
16/29
post-custom-banner


def prepend(self,data):

	new_node = Node(data)

    if self.head is None:
        self.head = new_node
        self.tail = new_node
    else: 
        new_node.next = self.head
        self.head.prev = new_node
        self.head = new_node
        
my_list.prepend(2)
my_list.prepend(3)
my_list.prepend(5)
my_list.prepend(7)

print(my_list) = 2 3 5 7
print(my_list.head.data) = 2
print(my_list.tail.data) = 7
profile
전문 금융인을 목표로하는 김야옹야옹이
post-custom-banner

0개의 댓글