일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 파이썬
- 탐색
- 백준
- format 메서드
- 정렬
- 문법
- MiniHeap
- type 함수
- 그리디
- 배열
- Git
- IT
- 순차 탐색
- 그래프
- 동적 계획
- 기초
- git hub
- 우분투
- UNIX
- 유닉스
- 스택
- 재귀 함수
- 분할 정복
- 트리
- 알고리즘
- sys.stdin.readline()
- NQueen
- 이진 탐색
- 자료구조
- 자기개발
Archives
- Today
- Total
코딩고치
[파이썬][자료구조] 배열 본문
배열
배열은 같은 종류의 데이터를 연속된 공간에 순차적으로 저장하여 데이터를 효율적으로 관리하기 위해 사용한다.
S | O | U | L | |
Index | 0 | 1 | 2 | 3 |
배열을 이용하면 "SOUL" 각각의 스펠링이 배열에 들어간다. 그리고 인덱스는 0번부터 시작한다.
장점
인덱스를 이용하여 원하는 데이터에 빠르게 접근 할 수 있다.
단점
미리 최대 길이를 지정해야 하기 때문에 데이터 추가/삭제의 어려움이 있다.
파이썬에서는 리스트를 이용하여 이런 불편함이 많이 없다.
리스트
파이썬에서는 리스트를 이용하여 배열을 구현한다.
# 1차원 배열
item_list = ["Estus Flask", "Ashen Estus Flask", "Estus Shard"]
item_list
['Estus Flask', 'Ashen Estus Flask', 'Estus Shard']
#인덱스를 이용하여 특정 데이터에 접근
print(item_list[0])
print(item_list[1])
print(item_list[2])
Estus Flask
Ashen Estus Flask
Estus Shard
#2차원 배열
item_list = [["Estus Flask", "Ashen Estus Flask", "Estus Shard"], ["Fading Soul", "Sovereignless Soul", "Soul of A Great Champion"]]
item_list
[['Estus Flask', 'Ashen Estus Flask', 'Estus Shard'],
['Fading Soul', 'Sovereignless Soul', 'Soul of A Great Champion']]
print(item_list[0])
print(item_list[1])
print(item_list[0][0])
print(item_list[0][1])
print(item_list[0][2])
print(item_list[1][0])
print(item_list[1][1])
print(item_list[1][2])
['Estus Flask', 'Ashen Estus Flask', 'Estus Shard']
['Fading Soul', 'Sovereignless Soul', 'Soul of A Great Champion']
Estus Flask
Ashen Estus Flask
Estus Shard
Fading Soul
Sovereignless Soul
Soul of A Great Champion
'파이썬 > 자료구조' 카테고리의 다른 글
[파이썬][자료구조] 시간 복잡도 (0) | 2020.04.16 |
---|---|
[파이썬][자료구조] 링크드 리스트 (Linked List) (0) | 2020.04.15 |
[파이썬][자료구조] 스택 (Stack) (0) | 2020.04.15 |
[파이썬][자료구조] Queue (0) | 2020.04.15 |
[파이썬][자료구조] 자료구조와 알고리즘 (0) | 2020.04.12 |
Comments