This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* C++ 이용하여 Red Black Tree 구현하기 | |
* | |
* 목적 : Red Black Tree 공부 하기 위해 작성했으며, | |
* C++ 이용하여 작성하시는 분들에게 도움이 되고자 했다. | |
* | |
* 설명 : key 값은 int만 가능 하며 중복 key는 허용 x | |
* 이중 연결 리스트로 구현 | |
* Red / Black은 식별하기 쉽게 enum이용 했으며, bool 이용시 데이터 크기 절약 | |
* |