Skip to content

Instantly share code, notes, and snippets.

@Marcellofabrizio
Marcellofabrizio / avlTree.cpp
Created March 17, 2021 01:56
AVL Tree in C++. Did this in a rush for an assigment, so if this is usefull to you, please help improving it so it could be helpful to others too!
#include <iostream>
using namespace std;
class Node {
public:
int value;
int height;
Node* left;
Node* right;