- Can use this boilerplate to modify: http://www.initializr.com/
- Make all your subpages and make sure to link them
- Check your index.html works
This file contains hidden or 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
/* | |
* [PROG] : Red Black Tree | |
* [AUTHOR] : Ashfaqur Rahman <[email protected]> | |
* [PURPOSE] : Red-Black tree is an algorithm for creating a balanced | |
* binary search tree data structure. Implementing a red-balck tree | |
* data structure is the purpose of this program. | |
* | |
* [DESCRIPTION] : Its almost like the normal binary search tree data structure. But | |
* for keeping the tree balanced an extra color field is introduced to each node. | |
* This tree will mantain bellow properties. |