"파이썬 스택"의 두 판 사이의 차이

 
(다른 사용자 한 명의 중간 판 2개는 보이지 않습니다)
4번째 줄: 4번째 줄:
*파이썬 스택 구현 예제
*파이썬 스택 구현 예제


<source lang="python">
<syntaxhighlight lang="python">
stack = [1, 2, 3]
stack = [1, 2, 3]
print(stack)
print(stack)
15번째 줄: 15번째 줄:
print(stack.pop())
print(stack.pop())
print(stack)
print(stack)
</source>
</syntaxhighlight>
<source lang="console">
<syntaxhighlight lang="console">
[1, 2, 3]
[1, 2, 3]
[1, 2, 3, 4]
[1, 2, 3, 4]
24번째 줄: 24번째 줄:
4
4
[1, 2, 3]
[1, 2, 3]
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
* [[스택]]
* [[스택]]
*[[파이썬 스택은 push대신 append?]]
* [[파이썬 리스트 스택]]
* [[파이썬 스택은 push대신 append?]]


==참고 자료==
==참고==
*https://docs.python.org/2/tutorial/datastructures.html
*https://docs.python.org/2/tutorial/datastructures.html


[[분류:Python]]
[[분류:Python]]

2023년 8월 18일 (금) 12:08 기준 최신판

1 개념[ | ]

Python Stack
파이썬 스택
  • 파이썬 스택 구현 예제
stack = [1, 2, 3]
print(stack)
stack.append(4)
print(stack)
stack.append(5)
print(stack)
print(stack.pop())
print(stack)
print(stack.pop())
print(stack)
[1, 2, 3]
[1, 2, 3, 4]
[1, 2, 3, 4, 5]
5
[1, 2, 3, 4]
4
[1, 2, 3]

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}