Search
Duplicate

Python 내장 자료구조의 시간복잡도

간단소개
팔만코딩경 컨트리뷰터
ContributorNotionAccount
주제 / 분류
Python
Algorithm
Scrap
태그
알고리즘
9 more properties

1. List(리스트)

Search
이름
사용 예
시간복잡도
L.extend()
O(len(...))
L.reverse()
O(N)
L.sort()
O(N Log N)
COUNT21

2. Set(집합)

3. Dictionary (사전)