Skip to content

Instantly share code, notes, and snippets.

View m0rphed's full-sized avatar

Victor Khovanov m0rphed

  • 09:18 (UTC +03:00)
View GitHub Profile
@m0rphed
m0rphed / avl_tree.cpp
Created December 14, 2018 10:20 — forked from codepainkiller/avl_tree.cpp
AVL Tree
#include <iostream>
using namespace std;
class Nodo {
public:
int dato;
int fe; // factor de equilibrio
Nodo* izquierdo;
Nodo* derecho;
//
// Created by PARTH GODHANI on 5/3/18.
//
#include<iostream>
#include <list>
using namespace std;
class Graph {