[SOLVED] COMP-3270 - Introduction to Algorithms - Autocomplete Project

30.00 $

Category:

Description

5/5 - (1 vote)
 Introduction to Algorithms - Autocomplete Project

Description:

Starter code for Project 3. This repository includes code to implement, test, and analyze autocomplete for a given set of N terms, where a term is a query string and an associated non-negative weight. That is, given a prefix, find all queries that start with the given prefix, in descending order of weight.

Data structures implemented: – Trie, Node

Languages used: – Java