Skip to content

Commit 9957f3d

Browse files
author
Raven G. Duran
committed
Merge branch 'master' of https://github.com/coderaven/avl-tree
2 parents f5a749b + c003b73 commit 9957f3d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ AVL Tree
22
========
33
( NOTE: I used DevC++ as the IDE when coding. Some of the functions such as getch() is not applicable to
44
some IDE like Netbeans. If however you would want to use Netbeans, then just change the getch() parts
5-
into a scanf() and debug! :))
5+
into a scanf(), change the switch() to get an integer not a character and debug! :))
6+
7+
UPDATE: There is no windows like system() calls in netbeans and codeblocks since their consoles are of Unix type.
8+
For this, you need to delete all the lines having "system("pause");" and "system("cls");".
69

710
An AVL tree is a self balancing Binary Search Tree.
811
It makes your algorithm more stable by making the time effeciency to O(log n).

0 commit comments

Comments
 (0)