Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Must be protected and use h and cpp files , Write an object-oriented program to create a dictionary. The dictionary has 26 files (files). You

Must be protected and use h and cpp files, Write an object-oriented program to create a dictionary. The dictionary has 26 files (files). You may name the files (tables) as A.txt, B.txt,..., Z.txt. Your dictionary class should have at least the following attributes and methods:

#include

#include

#include

using namespace std;

class Dictionary

{

protected:

const int maxWordsInDict;

constint maxWordsPerFile;

inttotalWordsInDict;

intnumOfWordsInFile[26];

staticbool failure;

staticbool success;

public:

Dictionary();

Dictionary(int dictMaxWords, int fileMaxWords);

bool AddAWord(string word);

bool DeleteAWord(string word);

bool SearchForWord(string word);

bool PrintAFileInDict(string filename);

bool SpellChecking(string fileName);

bool InsertWordsIntoDict(string fileName);

void ProcessTransactionFile();

bool enoughSpaceInDict();

bool enoughSpaceInFile(string word);

string getTheFileName(string word);

void PlaceWordIntoFile(string& word);

void IncTheCounterInFileAndDict(strin word);

};

bool Dictionary::failure = false;

bool Dictionary::success = true;

Dictionary::Dictionary(): maxWordsInDict (10000),

maxWordsPerFile (100)

{

totalWordsInDict = 0;

for (int i=0; i<26; i++)

numOfWordsInFile[i] = 0;

}

//------------------------------------------------------------------

Dictionary::Dictionary(int dictMaxWords, int fileMaxWords):

maxWordsInDict (dictMaxWords), maxWordsPerFile (fileMaxWords)

{totalWordsInDict = 0;

for (int i=0; i<26; i++)

numOfWordsInFile[i] = 0; }

//------------------------------------------------------------------

bool Dictionary::AddAWord(string word)

{

/* This routine opens the appropriate file, (If the first letter of the word is A, it should be in A.txt, or if the first letter of the word starts with B it should be in B.txt, and so on) and tries to add the word that is passed to this function into that file.

Before adding the word to the file, you should call the search function to ensure that the word is not already in the appropriate file

If you could add a word successfully into the appropriate file, you should increment the attribute TotalWordsInDict by 1 as long as you do not exceed the maxWordsInDict.

Further, if you add a word to A.txt you need to increment numOfWordsInFile[0] by 1. Similarly if you add a word to B.txt you need to increment numOfWordsInFile[1] and so on. Incrimination should be done as long as you do not exceed the maximum value.

If the word that you are trying to add, could not be added into the appropriate file for any reason, this routine should return failure

return (Dictionary::failure)

otherwise, if the word is successfully added, this routine should return success

return (Dictionary::success)

HINT: suppose the word you try to add is "adam". The word "adam" should be added to A.txt. Therefore, you need to open "A.txt" first. To do that you can do the following

string fileName = "#.txt"; // all files should be have ".txt" extension

fileName[0] = toupper(word[0]); // replaces the # sign with appropriate letter. Note that word is "adam" and. Letter 'a' is the first letter of the word and should be changed to upper case

ofstream fout;

fout.open(fileName.data(), ios::app); // ios::app means appending the word to the file rather than overwriting the old information in the file

fout << word << endl;

*/

}

//------------------------------------------------------------------

bool Dictionary::DeleteAWord(string word)

{

/* This routine opens the appropriate file where the word that you are looking for might be kept. (If the first letter of the word is A, it should be in A.txt, or if the first letter of the word starts with B it should be in B.txt, and so on. Then it places all the words into a vector and looks for the word in the vector. If the word is in the vector, it should be deleted and then the modified vector should be inserted back into the appropriate file

If you could remove a word successfully from the appropriate file, you should decrement the attribute TotalWordsInDict by 1.

Further, if you remove a word from A.txt you need to decrement numOfWordsInFile[0] by 1. Similarly if you remove a word from B.txt you need to decrement numOfWordsInFile[1] and so on.

If the word that you are trying to delete is not in the appropriate file, this routine should return failure

return (Dictionary::failure)

otherwise, when the word is successfully deleted, this routine should return success

return (Dictionary::success)

Note that before placing anything into the vector; it is a good idea to call the search function to ensure that the word is in the appropriate file

*/

}

//------------------------------------------------------------------

bool Dictionary::SearchForWord(string word)

{

/* This routine opens the appropriate file where the word that you are looking for might be kept. (If the first letter of the word is A, it should be in A.txt, or if the first letter of the word starts with B it should be in B.txt, and so on. If the word cannot be found in the appropriate file, this routine returns failure

return (Dictionary::failure)

otherwise, if the word does exist in the appropriate file, it returns success

return (Dictionary::success)

*/

}

//------------------------------------------------------------------

bool Dictionary::PrintAFileInDict(string filename)

{

/* This routine opens the file fileName, read the words one by one and print them on the screen. You should only print 5 words per line.

If the fileName could not be opened, this routine returns failure

return (Dictionary::failure)

otherwise, it returns success

return (Dictionary::success)

*/

}

//------------------------------------------------------------------

bool Dictionary::SpellChecking(string fileName)

{

/* This routine opens the file fileName, read the words one by one and does the spell checking of the words. Every word is searched and those that are not in the dictionary are reported on the screen

If the fileName could not be opened, this routine returns failure

return (Dictionary::failure)

otherwise, it returns success

return (Dictionary::success)

*/

}

//------------------------------------------------------------------

bool Dictionary::InsertWordsIntoDict(string fileName)

{

/* This routine opens the file fileName, read the words one by one and try to insert them into the dictionary. Note that before inserting a word into the dictionary, you should search the dictionary to ensure that the word is not there.

If the fileName could not be opened, this routine returns failure

return (Dictionary::failure)

otherwise, it returns success

return (Dictionary::success)

*/

}

//------------------------------------------------------------------

void Dictionary::ProcessTransactionFile()

{

/* In this routine, you need to ask the user to enter a transaction file. A transaction file has two information per line. The first information is a command telling the programmer what to do. The second information is the data associated with the command. For example, a possible transaction file may contain

AddWstudent

DeleteWplay

SearchWmedical

PrintFQ.txt

SpellCheckmyEssay.txt

InsertFdata.txt

....

....

....

AddW should add the word "student" into the dictionary. You should call the AddAWord(string word) function to add the word "student" into the dictionary

DeleteW should remove the word "play" from the dictionary. You should call the DeleteAWord(string word) function to remove the word "play" from the dictionary

SearchW should search for the word "medical" in the dictionary. You should call the SearchForWord(string word) function to search for the word "medical" in the dictionary

PrintF should print all the words in a particular fie on the screen. You should call the function PrintAFileInDict(string fileName) to print the content of file Q.txt on the screen

SpellCheck should do the spell checking of a file. All errors should be reported on the screen. You should call the function SpellChecking(string fileName) to do the spell checking of the file called "myEssay.txt"

InsertF should process the content of a file and insert word by word in the file into the dictionary. You should call the function InsertWordsIntoDict(string fileName) to add the content of the file called "data.txt" into the dictionary

Note that if the transaction file does not exist, you need to print appropriate failure message on the screen

*/

}

//------------------------------------------------------------------

bool Dictionary::enoughSpaceInDict()

{

If (maxWordsInDict == totalWordsInDict)

return failure;

return success;

}

//------------------------------------------------------------------

bool Dictionary::enoughSpaceInFile(string word)

{

char ch = toupper(word[0]);

int index = ch A;

If (maxWordsPerFile == numOfWordsInFile[index]

return failure;

return success;

}

//------------------------------------------------------------------

string Dictionary::getTheFileName(string word)

{

char ch = toupper(word[0]);

string filename = *.txt;

filename [0] = ch;

return fileName;

}

//------------------------------------------------------------------

void Dictionary::PlaceWordIntoFile(string& word)

{

word = tolowercase (word);

String filename = getTheFileName(string word);

Ofream fout;

Fout.open(filename.data(), ios::app);

Fout << word << endl;

return;

}

//------------------------------------------------------------------

word Dictionary::tolowercase (string& word)

{

string theWord = word;

For (int i=0; i

Word[i] tolower[word[i]);

//------------------------------------------------------------------

void Dictionary::IncTheCounterInFileAndDict(strin word)

{

totalWordsInDict++;

char ch = toupper(word[0]);

int index = ch A;

numOfWordsInFile[index]++;

}

//------------------------------------------------------------------

int main()

{

Dictionary DictForCS211;

DictForCS211.ProcessTransactionFile();

return 0;

}

/*

Other Comments:

1)Do not worry about punctuations. Your program should only consider words and ignore all punctuations.

2) All words should be in lower case before it is placed in the dictionary

3)Do not write 26 statements to open/close A.txt to Z.txt files.

4)When a file name is a variable, you need to open it as follows:

fin.open(fileName.data());

*/

Place the following in your Transaction file

AddWstudent

AddWteacher

AddWcs211

InsertFdata.txt

PrintFS.txt

DeleteWstudent

AddWhello

SpellCheckmyEssay.txt

DeleteWplay

SearchWmedical

SearchWcs211

PrintFC.txt

PrintFH.txt

PrintFT.txt

Place the following in your data.txt file

Current approaches to enhancing concurrency in database systems have been focused on developing new transaction models that typically demand changes to either the atomicity consistency or isolation properties of the transactions themselves Indeed much of this work has been successful but most of these attempts suffer from being either computationally infeasible or requiring the transaction designer be sufficiently knowledgeable to determine a priori how the application semantics must interface with the transaction model

Our approach exploits an object-oriented world but is different than these others in that the transaction designer is not expected to have intimate application knowledge this load is placed on the transaction system which must be able to determine by static analysis how to maintain database consistency This paper describes an overall architectural model to facilitate multiversion objects that are explicitly designed to enhance concurrency Within the context of concurrency the key aspects addressed by this paper are as follows

First A transaction model is introduced to show how transactions are managed in our multiversion environment

Second A new correctness criterion is described that emits more histories than conflict serializability and is computationally tractable

Third an architectural model is developed to support multiversioning that provides the well-known ACID transaction properties These build a framework for the implementation of an optimistic concurrency control algorithm Further they exploit related issues required to generate reconciliation procedures which have an important role for providing a reliable system

Place the following in your myEssay.txt file

Concrrent approaches to enhancing concurrency in database systems have been focused on developing new transaction models that typically demand changes to either the atomicity consistency or isolation properties of the transactions themeselves Indeed much of this work has been successful but most of these attempts suffer from being either computationally infeasible or requiring the transaction designer be sufficiently knowledgeable to determine a priori how the application semantics must interface with the transaction model

Our approach exploits an object-oriented world but is diferent than these others in that the transaction designer is not expected to have intimate application knowledge this load is placed on the transaction system wich must be able to determine by static analyziz how to maintain database consistency This paper describes an overall architectural model to facilitate multiversion objects that are explicitly designed to enhanc concurrency Within the context of concurrency the key aspects addressed by this paper are as follows

First A transactian model is introduced to show how transactions are managed in our multiversion environment

Second A new correctness criterion is described that emits more histories than conflict serializability and is computationally tractable

Third an architectural model is developed to support multiversioning that provides the well-known ACID transaction properties These build a framework for the implementation of an optimistic concurrency control algorithm Further they exploit relatted issues required to generate reconciliation procedures which have an important role for providing a reliable system

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions