Skip to content

Instantly share code, notes, and snippets.

View thauansrx's full-sized avatar
🎯
Focusing

Thauan Trindade thauansrx

🎯
Focusing
View GitHub Profile
import java.util.ArrayList;
public class ArvoreAvl {
protected No raiz;
public void inserir(int k) {
No n = new No(k);
inserirAVL(this.raiz, n);
}