You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The trie data structure contains binary trees, but requires them to be rewritten instead of importing from bst. This leaves a lot of room for improvement in terms of code duplication and performance. The main reason is the fact that we cannot yet let a bst implementation use bst* as a the generic type.
The
trie
data structure contains binary trees, but requires them to be rewritten instead of importing frombst
. This leaves a lot of room for improvement in terms of code duplication and performance. The main reason is the fact that we cannot yet let abst
implementation usebst*
as a the generic type.What we want is essentially to be able to do
This way, we might be able to use the
bst
implementation in ourtrie
.The text was updated successfully, but these errors were encountered: