Skip to content

Commit af45c77

Browse files
committed
add inverted index solution in golang
1 parent 0e8bae0 commit af45c77

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ Data Structures
9595
---------
9696

9797
**Inverted index** - An [Inverted Index](http://en.wikipedia.org/wiki/Inverted_index) is a data structure used to create full text search. 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. [[averageprogrammer (Java)]](https://github.com/averageprogrammer/Word_Finder) [[anubhavmaity (Python)]](https://github.com/anubhavmaity/FindWordInFiles)[[smac89 (C++)]](https://gist.github.com/smac89/e9fdfaa83f6659480b9a) [[gatsbydhn (c++)]](https://github.com/gatsbydhn/myToy/blob/master/invertedIndex.cpp#L1)
98+
[[humbhenri (Go)]](https://github.com/humbhenri/karanProjectSolutions/tree/master/invertedIndex)
9899

99100
Text
100101
---------

0 commit comments

Comments
 (0)