You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
링크드 리스트
링크드 리스트는 데이터 요소들을 순차적으로 연결한 자료구조입니다. 각 노드(Node)는 데이터와 다음 노드를 가리키는 포인터로 구성됩니다.
주요 특징
연습 문제
예시 코드
class ListNode {
data: T;
next: ListNode | null;
}
class LinkedList {
head: ListNode | null;
}
Beta Was this translation helpful? Give feedback.
All reactions