Skip to content

Instantly share code, notes, and snippets.

@invisy
invisy / avl_tree.cs
Created April 1, 2019 08:40
AVL Tree
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SearchTree2
{
public class AVLNode
{
@invisy
invisy / binary_tree.cs
Last active April 1, 2019 08:38
Binary Tree
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SearchTree2
{
public class Node
{