CSE 461 Lab 8 solved

$30.00

Category: Tags: , , , You will Instantly receive a download link for .zip solution file upon Payment || To Order Original Work Click Custom Order?

Description

5/5 - (6 votes)

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

  1. 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);
    };
    
  2. Work on the IndexSearch function.
  3. Work on the Search function.
  4. Use the main program here.