PREV INDEX NEXT

Author: Stan Eisenstat
Subject: Re: [Cs223] Trie Implementation
Date: Sunday, 26 Apr 2020, 13:31:38


    > Message Posted By: Unknown
    >
    > Are we allowed to use Aspnes' implementation of tries in his notes or
    > base our implementation off of his?

Aspnes describes a binary trie where there are two
children per node (corresponding to 0 and 1).  YOu
must use a letter trie (with 26 children per node),
but may base your code on his if you attribute his
notes in both your source file and your log.

--Stan-
PREV INDEX NEXT