File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,10 @@ AVL Tree
2
2
========
3
3
( NOTE: I used DevC++ as the IDE when coding. Some of the functions such as getch() is not applicable to
4
4
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");".
6
9
7
10
An AVL tree is a self balancing Binary Search Tree.
8
11
It makes your algorithm more stable by making the time effeciency to O(log n).
You can’t perform that action at this time.
0 commit comments