From cd605e11b57a12152b024c620e8578ee8704fb92 Mon Sep 17 00:00:00 2001 From: Xceptions Date: Wed, 15 May 2024 12:47:11 +0100 Subject: [PATCH] updated readme --- Search_Engine/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Search_Engine/README.md b/Search_Engine/README.md index d952a5a5888..36081b0aad8 100644 --- a/Search_Engine/README.md +++ b/Search_Engine/README.md @@ -1,6 +1,6 @@ -Python Program to search through various documents and return the documents containing the search term. +Python Program to search through various documents and return the documents containing the search term. Algorithm involves using a reverse index to store each word in each document where a document is defined by an index. To get the document that contains a search term, we simply find an intersect of all the words in the search term, and using the resulting indexes, retrieve the document(s) that contain these words -To see in action, run +To use directly, run ```python3 backend.py```