Skip to content

Commit c6ddab7

Browse files
fix: Correção da altura, o nó sempre começa com altura 0
1 parent 3b99136 commit c6ddab7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NoAVL.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ public class NoAVL {
55

66
public NoAVL(OrdemServico os) {
77
this.os = os;
8-
altura = 1;
8+
altura = 0;
99
}
1010
}

0 commit comments

Comments
 (0)