2013-04-10 21:29:02 -07:00
|
|
|
An [[wp:Inverted_index|Inverted Index]] is a data structure used to create full text search.
|
|
|
|
|
|
2016-12-05 22:15:40 +01:00
|
|
|
|
|
|
|
|
;Task:
|
|
|
|
|
Given a set of text files, implement a program to create an inverted index.
|
|
|
|
|
|
|
|
|
|
Also create a user interface to do a search using that inverted index which returns a list of files that contain the query term / terms.
|
|
|
|
|
|
|
|
|
|
The search index can be in memory.
|
|
|
|
|
<br><br>
|