Linked List 하나의 노드는 다음 노드만을 가리킨다. 위 linked list의 구조를 작성하면 다음과 같다. // linked list 구조 const list = { head: { value: 22, next: { value: 2, next: { value: 77, next: { value: 6, next: { value: 43, next: { value: 76, next: { value: 89, next: null }, }, }, }, }, }, }, } 이제 원하는 linked list를 구현할 수 있는 코드를 작성해보자. // Linked List 만들기 class Node { // 노드 하나를 정의하는 클래스 constructor(data) { this.data = data; this...