From 957d41bfbb4a6db13adea9aaebcb86bbb2fa2087 Mon Sep 17 00:00:00 2001 From: Adam Blank <blank@cs.washington.edu> Date: Tue, 19 Jan 2016 08:10:23 -0800 Subject: [PATCH] Update BST Class Comment --- src/cse332/datastructures/trees/BinarySearchTree.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/cse332/datastructures/trees/BinarySearchTree.java b/src/cse332/datastructures/trees/BinarySearchTree.java index aaf3342..f848e18 100644 --- a/src/cse332/datastructures/trees/BinarySearchTree.java +++ b/src/cse332/datastructures/trees/BinarySearchTree.java @@ -10,9 +10,8 @@ import cse332.interfaces.worklists.WorkList; import datastructures.worklists.ArrayStack; /** - * BinarySearchTree implements the DataCounter interface using a binary search - * tree. The constructor takes a Comparator<? super E> "function object" so that - * items of type E can be compared. Each tree node associates a count with an E. + * BinarySearchTree implements the ComparableDictionary interface using a binary + * search tree. Notice that the key type must be Comparable. */ public class BinarySearchTree<K extends Comparable<K>, V> extends ComparableDictionary<K, V> { -- GitLab