From a50c6b4163b40ffc498388706837bd285377e3a7 Mon Sep 17 00:00:00 2001 From: AbhishekVarshney98 <41852265+AbhishekVarshney98@users.noreply.github.com> Date: Tue, 23 Oct 2018 17:24:42 +0530 Subject: [PATCH] added sasslabel --- data_structures/Binary Tree/binary_seach_tree.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data_structures/Binary Tree/binary_seach_tree.py b/data_structures/Binary Tree/binary_seach_tree.py index b6aac2990..53253d23d 100644 --- a/data_structures/Binary Tree/binary_seach_tree.py +++ b/data_structures/Binary Tree/binary_seach_tree.py @@ -25,6 +25,9 @@ class Node: def setRight(self, right): self.rigt = right + + def sassLabel(self, label): + self.label = label class BinarySearchTree: