Skip to content

Instantly share code, notes, and snippets.

View thismusicdude's full-sized avatar

Max Schmitt thismusicdude

View GitHub Profile
@mateor
mateor / b_tree.py
Created November 12, 2014 23:17
A simple B-Tree in Python that supports insert, search and print.
# coding=utf-8
"""
author = Mateor
PYTHON 3.3.5
"""
from __future__ import (nested_scopes, generators, division, absolute_import, with_statement,
print_function, unicode_literals)