Joined
Last Seen
0 Reputation Points
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 3
0 Endorsements
Ranked #44.3K
1 Posted Topic
[CODE]/* SearchEngine.cpp : Creating Search Index and perform searching with the given input term(S) */ #include <stdio.h> #include <windows.h> #include <string.h> #include <conio.h> #include <stdlib.h> #define HASHSIZE 101 typedef struct _Document Document; typedef struct _WordList WordList; typedef struct _Position Position; /* Hold positions of words in file */ struct _Position …
The End.
varnesh_kp