자료구조

추상 자료형(Abstrac Data Type, ADT)

자료 구조 - 위키백과, 우리 모두의 백과사전

연결리스트

배열 vs 연결리스트

# 연결리스트 간단하게 구현해보기
class Node :
	def __init__(self, value, next = None):
		self.value = value
		self.next = next