Sale!

CSE 461 Lab 8 solved

Original price was: $35.00.Current price is: $30.00.

Download Details:

  • Name: Lab-8-fj3qzw.zip
  • Type: zip
  • Size: 19.84 KB

Category:

Description

5/5 - (4 votes)

In this laboratory you are going to finish the last project. The data is here.

Here is the interface for the class Table:
Class Table : Public FileSys
{
Public :
Table(string diskname,int blocksize,int numberofblocks, string flatfile, string indexfile);
int Build_Table(string input_file);
int Search(string value);
Private :
string flatfile;
string indexfile;
int numberofrecords;
FileSys filesystem;
int IndexSearch(string value);
};

Work on the IndexSearch function.
Work on the Search function.
Use the main program here.