Skip to content

Commit 93c8cef

Browse files
authored
github changes
1 parent 852cb52 commit 93c8cef

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
# Cplusplus-Project
2-
Understanding Search Engine with C++ Program
3-
Search Engine:
2+
# Understanding Search Engine with C++ Program
3+
## Search Engine:
44

55
A general search engine is an Internet portal through which a person can search numerous compiled resources for topic-related information. Common general search engines include Google, Yahoo!, Alta Vista and Bing. To perform a search, the user enters a word or phrase.
66

7-
About:
7+
## About:
88

99
What a Search Engine basically does is, it finds a particular "Sentence and its related content" on a click and then it goes on backside, it searches each word in the sentence which is present in one particular Sentence and its nearest related and relevant contents that is available in Internet among millions of Web Pages. Search Engines uses Web crawling, Indexing and Searching to find the particular "search" in Internet.
1010

1111

12-
What to Learn:
12+
## What to Learn:
1313

1414
We will Understand the methods in C++ and how we have applied all the relevant topics from c++ in our code to make our "Mini Search Engine" of two Text File and how it searches through the hundreds of search elements for every "search" we make and gives our result.
1515

16-
Analogy between "Search Engine" vs "Mini Search Engine":
16+
## Analogy between "Search Engine" vs "Mini Search Engine":
1717

1818
* Millions of Webpages == Two Text Documents
1919
* Input Field == Input stream of your IDE
@@ -23,15 +23,15 @@ Analogy between "Search Engine" vs "Mini Search Engine":
2323
* Found match - it opens all Relevant WebPages in Browser == Found Match - it Opens One Webpage in Browser
2424

2525

26-
Searching & Indexing Technique :
26+
## Searching & Indexing Technique :
2727

28-
GOOGLE SEARCH ENGINE:
28+
### GOOGLE SEARCH ENGINE:
2929
PageRank is technique used by Google Search Engine to Rank the Website based on the Number of incoming links to the website.Google Bot is used for Indexing the New Webpages and the process used is Crawling.
3030

31-
MINI SEARCH ENGINE:
31+
### MINI SEARCH ENGINE:
3232
Linear Search Technique is used to search through text files where more than 100 elements are available to search. Each of the Element is indexed and stored. When a search is made, all the relevant words searched through each element(a line) and gives out INDEX when maximum match of words in an element occurs.A match is not found then the particular is search is indexed and then added to the text file.
3333

34-
Pre-Requiste :
34+
## Pre-Requiste :
3535

3636
XCode - Mac OS
3737

0 commit comments

Comments
 (0)