일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 깃
- Algorithm
- Houdini
- Unity
- C# delegate
- C언어 포인터
- c# winform
- HTML
- git
- c# 추상 클래스
- c# 윈폼
- jupyter
- dart 언어
- gitlab
- docker
- Data Structure
- C++
- jupyter lab
- Python
- c언어
- Flutter
- 구조체
- 유니티
- 도커
- 플러터
- 포인터
- 다트 언어
- c#
- github
- vim
Archives
- Today
- Total
목록python 후위 순회 (1)
nomad-programmer
[Programming/Algorithm] 이진 트리 with Python
Python으로 만드는 이진 트리 알고리즘 class TreeNode: def __init__(self): self.__data = None self.__left = None self.__right = None def __del__(self): print('TreeNode of {} is deleted'.format(self.data)) @property def data(self): return self.__data @data.setter def data(self, data): self.__data = data @property def left(self): return self.__left @left.setter def left(self, left): self.__left = left @property ..
Programming/Algorithm
2021. 2. 9. 15:38