Skip to content

Commit 6e85036

Browse files
committed
update
1 parent c7e0a0a commit 6e85036

File tree

4 files changed

+34
-15
lines changed

4 files changed

+34
-15
lines changed

.DS_Store

-8 KB
Binary file not shown.

14장_트리_순회/3_transversal_BST_ancestor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def find_ancestor(path, low_value, high_value):
2626
path = bst.preorder()
2727
print("전위 순회: ", path)
2828

29+
# 입력된 두 노드(인자)는 트리에 존재하며 오름차순으로 입력한다.
2930
print("1과 6의 공통 상위 조상 :", find_ancestor(path, 1, 6))
3031
print("1과 11의 공통 상위 조상: ", find_ancestor(path, 1, 11))
3132
print("1과 4의 공통 상위 조상: ", find_ancestor(path, 1, 4))

README.md

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,14 @@
1-
## ✨ Algorithms & Data Structures in Python (Book, Hanbit Media, Inc.) ✨
1+
## ✨ 파이썬 자료구조와 알고리즘 ✨
22

3-
* Including Python solutions for every exercises from "Cracking the Code Interview".
4-
* #### 📚[Download the digital book here.](https://github.com/bt3gl/Python-and-Algorithms-and-Data-Structures/blob/master/ebook/book_second_edition.pdf)
5-
6-
![](HALEIWA.jpg)
7-
8-
9-
## ✨ Installation:
10-
11-
The snippets are designed to be used individually. However, If you want to install all fo the libraries in your [virtualenv](https://coderwall.com/p/8-aeka), do this:
12-
13-
```
14-
$ pip install -r requirements.txt
15-
```
3+
예스24 링크: http://www.yes24.com/Product/Goods/74971408
4+
![](http://www.hanbit.co.kr/data/books/B8465804191_l.jpg)
165

6+
* #### 📚[원서 다운로드는 여기를 클릭](https://github.com/AstinCHOI/Python-and-Algorithms-and-Data-Structures/blob/master/ebook/book_second_edition.pdf)
177

8+
![](HALEIWA.jpg)
189

1910
----
2011

21-
2212
## License
2313

2414
When making a reference to my work, please use my [website](http://bt3gl.github.io/index.html).

README_old.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
## ✨ Algorithms & Data Structures in Python (Book, Hanbit Media, Inc.) ✨
2+
3+
* Including Python solutions for every exercises from "Cracking the Code Interview".
4+
* #### 📚[Download the digital book here.](https://github.com/bt3gl/Python-and-Algorithms-and-Data-Structures/blob/master/ebook/book_second_edition.pdf)
5+
6+
![](HALEIWA.jpg)
7+
8+
9+
## ✨ Installation:
10+
11+
The snippets are designed to be used individually. However, If you want to install all fo the libraries in your [virtualenv](https://coderwall.com/p/8-aeka), do this:
12+
13+
```
14+
$ pip install -r requirements.txt
15+
```
16+
17+
18+
19+
----
20+
21+
22+
## License
23+
24+
When making a reference to my work, please use my [website](http://bt3gl.github.io/index.html).
25+
26+
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />
27+
28+
This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/).

0 commit comments

Comments
 (0)