Skip to content

Instantly share code, notes, and snippets.

View Nonouf's full-sized avatar
🚒

Arnaud Schildknecht Nonouf

🚒
View GitHub Profile

Keybase proof

I hereby claim:

  • I am nonouf on github.
  • I am nonouf (https://keybase.io/nonouf) on keybase.
  • I have a public key ASCXYf9LLqdNVAyLIFMSsTKj0qVxa9aI0v6wFG-70k5yawo

To claim this, I am signing this object:

@Nonouf
Nonouf / AVLTree.h
Created June 17, 2015 10:28
Simple Objective-C AVL Tree
//
// AVLTree.h
// AVLTree-ObjC
//
// Created by Arnaud Schildknecht on 17/06/15.
// Copyright (c) 2015 Arnaud Schildknecht. All rights reserved.
//
#import <Foundation/Foundation.h>
@Nonouf
Nonouf / AVLTree.swift
Last active August 29, 2015 14:21
Simple Swift AVL Tree
//
// AVLTree.swift
// AVLTree-Swift
//
// Created by Arnaud Schildknecht on 22/05/15.
// Copyright (c) 2015 Arnaud Schildknecht. All rights reserved.
//
class AVLTree<T: Comparable> {