Já tinha visto até na faculdade, mas só agora que fez sentido, muito obrigado.
@leguarino4 жыл бұрын
Que bom que fez sentido agora 👍🏻
@marcioiherrero2 жыл бұрын
Muito boa a explicação de inserção em árvore binária com Java, entendi tudo. Parabéns!
@cleibermagrelo4 жыл бұрын
Top demais! Parabéns pelo conteúdo Guarino!
@leguarino4 жыл бұрын
Vlwww, Cleiber!
@joicemar.s.m4835 Жыл бұрын
No fim tudo se resume em manjar dos if elas?
@isukuaovjohnlobo2991 Жыл бұрын
Resumo da aula.. O tipo é do tipo tipo kkkkk, muito boa a aula :)
@leguarino Жыл бұрын
Kkkkkkkkk
@paulogomes90002 жыл бұрын
"Isso aqui não é curso de front-end não rapaz" KKKKKKKKKKKKKKKKKKKKKKKKKKKKKK
@marcoscandido1392 Жыл бұрын
Kkkkkkkkkkkkk back é vida
@matguimara2 жыл бұрын
Muito show!
@edernatan38312 жыл бұрын
Aqui não rodou
@KleytonLopes Жыл бұрын
Poxa.... Árvore binária tem que ter recursividade. Com "while" não tem graça! 😂
@lazarolawrencepereiradamas40852 жыл бұрын
public void add(T data) { node = new Element(data); if (root == null) { root = node; } else { Element current = root; while (true) { int comparison = node.getData().compareTo(current.getData()); if (comparison == -1) { if (current.getLeft() != null) { current = current.getLeft(); } else { current.setLeft(node); break; } } else { if (current.getRight() != null) { current = current.getRight(); } else { current.setRight(node); break; } } } } size++; } Caso eu renova os " if (current.getRight() != null) { current = current.getRight(); }" e " if (current.getRight() != null) { current = current.getRight(); }" o código funcionaria igual?