From 6a0e063843c0fda6964742e8be605c43bc9e5e3e Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sat, 23 Mar 2013 20:50:59 +0100 Subject: Updated description. --- source/binarytree.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/binarytree.py b/source/binarytree.py index 74078cfc..428578ae 100644 --- a/source/binarytree.py +++ b/source/binarytree.py @@ -1,7 +1,9 @@ #! /usr/bin/env python #-*- coding: utf-8 -*- -# A binary ordered example +""" +A binary ordered tree implementation. +""" class Node(object): """ @@ -171,4 +173,4 @@ if __name__ == "__main__": print(tree.minValue(root)) print(tree.maxDepth(root)) - print(tree.size(root)) + print(tree.size(root)) \ No newline at end of file -- cgit