CSE 461 Lab 7 solution

$24.99

Original Work ?

Download Details:

  • Name: Lab-7-f7qumy.zip
  • Type: zip
  • Size: 19.20 KB

Category: You will Instantly receive a download link upon Payment||Click Original Work Button for Custom work

Description

5/5 - (4 votes)

In this laboratory you are going to start working on 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);
    };
    

    All functions return 1 if successful and 0 otherwise.

  2. Work on the constructor.
  3. Work on the Build_table function.