Skip to content

Instantly share code, notes, and snippets.

View hoborm's full-sized avatar
🐶

Mihaly Hobor hoborm

🐶
  • Budapest, Hungary
  • 22:01 (UTC +02:00)
View GitHub Profile
@hoborm
hoborm / BinarySearchTree.cs
Created March 11, 2018 20:29 — forked from aaronjwood/BinarySearchTree.cs
Binary search tree implementation in C#
using System;
using System.Diagnostics;
namespace BinarySearchTree
{
class Node
{
public int value;
public Node left;
public Node right;