Loading...

Messages

Proposals

Stuck in your homework and missing deadline? Get urgent help in $10/Page with 24 hours deadline

Get Urgent Writing Help In Your Essays, Assignments, Homeworks, Dissertation, Thesis Or Coursework & Achieve A+ Grades.

Privacy Guaranteed - 100% Plagiarism Free Writing - Free Turnitin Report - Professional And Experienced Writers - 24/7 Online Support

Imp's cold sweat battle cats

17/11/2021 Client: muhammad11 Deadline: 2 Day

Java Algorithem

COMP 2140 Assignment 3 (Initial Version)

Implementation of a Spellchecker using Hash Tables

Pak Ching Li

Due: Friday March 2nd, 2018 - 11:59 PM

Programming Standards

When writing code for this course, follow the programming standards, available on this course’s website on UMLearn. Failure to do so will result in the loss of marks.

Objective

The objective of this assignment is to implement a spell checking program using hash tables and separate chaining.

Your Program

General Overview: Most spell checkers use hashing to determine if a given word in a document is correct (that’s why they can check your spelling as you type).

The Dictionary: First, you must set up a dictionary in which to look up words. When your program starts, use either JFileChooser or JOptionPane.showInputDialog or a Scanner object to allow the user to specify the dictionary file to load. (The dictionary file is words.txt, which can be found in the Content Browser on D2L with this assignment in an Assignment 3 folder under Assignments.) Read in the dictionary file. There is one word per line. Insert each word in the dictionary into a Table ADT.

Implement the Table ADT as follows:

• Use a hash table of size 94321 (a prime number that gives a load factor of about 0.5).

• Use separate chaining (in which each table slot is a (singly) linked list of nodes) to resolve collisions. Node words may be inserted at the front of the appropriate linked list.

• Use the polynomial hashing algorithm discussed in class to hash each word — use Horner’s method to compute the polynomial hash code and take the result of each operation mod the table size to avoid integer overflow. In Horner’s method, use a = 13 when evaluating your polynomial p(a).

Checking the spelling in a file: After you have read in the dictionary file and stored them in a table, you must check the spelling of all words in another file, a document file.

Again, use either JFileChooser or JOptionPane.showInputDialog or a Scanner object to allow the user to specify the document file to load. The file book.txt is provided for testing. This file contains multiple words per line. You are encourage to test against other document files.

For each word in the document file, perform a Table search to see if the word is in the dictionary. If a word isn’t present in the Table, then it is a spelling error (that is, a mis-spelled word). It should be pointed out that words.txt is not a very complete dictionary and so some words that are spelled correctly will be flagged as erroneous.

1

Once your program has process the document file, indicate the spelling errors by printing each mis-spelled word once. With each word, include the line numbers on which the word appears (in the order in which you found them). Note that a word can be mis-spelled multiple times on a single line. So an mis-spelled word might generate the following line in the output:

Invalid word "Michiko" found on lines 1 59 21 21

To keep track of mis-spelled words and on which lines they occur, use another hash table, known as the mis-spelled word table, to keep track of the mis-spelled words (and where they were found in the document):

• This hash table should have size 2797.

• An mis-spelled word will only be added to the mis-spelled word table if the word is not already in the mis-spelled word table. Thus, you must do a search for the word, and only add the word to the mis-spelled word table if it is not found.

• Each element of the mis-spelled word table will contain two things: a word and a queue of the line numbers on which this mis-spelled word was found in the document file. The queue of line numbers is an ordinary queue: line numbers are enqueued at the end of the queue. You may implement this as a linked list (of your choice).

• If a mis-spelled word is already in the table, simply add the new line number to the end of queue of line numbers for that word.

After the document file is completely processed, traverse the mis-spelled word table. For each mis-spelled word found in the table, print out both the word and the numbers of all lines on which it appeared (removing the line numbers one-by-one from the line number queue). Note that the output will likely be in alphabetic order, which is perfectly okay.

Suggestions

• The document file that you will read has punctuation that must be handled. You must ensure that no word is seen as error because it had punctuation attached to it. Note that an apostrophe is a valid part of a word and should not be considered punctuation. Punctuations other than apostrophe will split a word into two. Eg) Input abc-def becomes two words abc and def.

Suggestion: If String inLine is an input line from the document file, then the command nLine.trim().split( "[^a-zA-Z']+" ) splits the line into tokens using one or more characters that are NOT letters or an apostrophe as the splitting pattern (“^” means “not”). Try this on some sample strings to see what it does.

• Hashing "A" and "a" produces different values, but you would not expect them to be different words in a dictionary. To manage this difference, convert all text to all lower case when processing (this comment also applies to the dictionary words). This conversion simplifies things and makes the spell checker more reliable.

Suggestion: The helpful String method toLowerCase() will do the job for you and a good idea to do this as soon as an input is read in.

• You must organize you program into appropriate classes. You should have a class representing your hash table, a class representing a the data to be stored in the hash table, a class representing a queue, a class representing the data to be stored in your queue, and a main application class. You may have other classes if you need them.

2

• Do not have more than one hash table class. There should be one hash table class, that can be used for both the dictionary words and the mis-spelled words (of course you’ll need two hash table objects). The key is to make the class that holds your hash table data data flexible enough to handle both situations.

• Your data structures (hash tables, queues, etc.) should NOT contain any program logic specific for solving this program. Instead, they just should implement the standard features as discussed in class.

• Test your program using a small dictionary and document file first. Using small files along with small hash table sizes (say size=5) will allow you to quickly check if your code is working or not. A small dictionary file test-dict.txt is provided, along with a small document file test-file.txt.

Sample output: Your output should take the following form (note that this is not the output for the given data files):

There are a total of 10 invalid words:

Invalid "cant" found on lines 1

Invalid "pewter" found on lines 1

Invalid "turbine" found on lines 1

Invalid word "Michiko" found on lines 1 59 21 21

Invalid word "fortune" found on lines 1

Invalid word "fashionable" found on lines 3 5 9 11 11 13

Invalid word "Popcorn" found on lines 5 90 104

Invalid word "10" found on lines 7 139

Invalid word "sensei" found on lines 7 139

Invalid word "haberdasher" found on lines 9 13 13

Hand-in Instructions

Go to COMP2140 in UMLearn, then click “Dropbox” under “Assessments” at the top. You will find a dropbox folder called “Assignment 3”. Click the link and follow the instructions. Please note the following:

• Submit ONE .java file. The .java file must contain all the source code. The .java file must be named A3.java (e.g., A3Daimon1234567.java).

• Please do not submit anything else.

• We only accept homework submissions via UMLearn. Please DO NOT try to email your homework to the instructor or TAs.

• We reserve the right to refuse to grade the homework or to deduct marks if these instructions are not followed.

Honesty Declaration

Your Assignment 3 (and any other work in this course) may not be marked unless you have already handed in the blanket honesty declaration covering all of your term work.

3

Homework is Completed By:

Writer Writer Name Amount Client Comments & Rating
Instant Homework Helper

ONLINE

Instant Homework Helper

$36

She helped me in last minute in a very reasonable price. She is a lifesaver, I got A+ grade in my homework, I will surely hire her again for my next assignments, Thumbs Up!

Order & Get This Solution Within 3 Hours in $25/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 3 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 6 Hours in $20/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 6 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 12 Hours in $15/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 12 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

6 writers have sent their proposals to do this homework:

Assignment Helper
Professional Coursework Help
Homework Master
Solution Provider
Quality Assignments
Engineering Exam Guru
Writer Writer Name Offer Chat
Assignment Helper

ONLINE

Assignment Helper

As an experienced writer, I have extensive experience in business writing, report writing, business profile writing, writing business reports and business plans for my clients.

$23 Chat With Writer
Professional Coursework Help

ONLINE

Professional Coursework Help

I have read your project description carefully and you will get plagiarism free writing according to your requirements. Thank You

$22 Chat With Writer
Homework Master

ONLINE

Homework Master

I am an elite class writer with more than 6 years of experience as an academic writer. I will provide you the 100 percent original and plagiarism-free content.

$47 Chat With Writer
Solution Provider

ONLINE

Solution Provider

I am an academic and research writer with having an MBA degree in business and finance. I have written many business reports on several topics and am well aware of all academic referencing styles.

$35 Chat With Writer
Quality Assignments

ONLINE

Quality Assignments

I am a PhD writer with 10 years of experience. I will be delivering high-quality, plagiarism-free work to you in the minimum amount of time. Waiting for your message.

$36 Chat With Writer
Engineering Exam Guru

ONLINE

Engineering Exam Guru

I will provide you with the well organized and well research papers from different primary and secondary sources will write the content that will support your points.

$15 Chat With Writer

Let our expert academic writers to help you in achieving a+ grades in your homework, assignment, quiz or exam.

Similar Homework Questions

Can potatoes produce electricity - Combination of question mark and exclamation point - The scarborough corporation manufactures and sells two products - Where was siegfried sassoon born - Chemical hair texturizers temporarily raise the ph - The cone and plate viscometer shown is an instrument - Meiosis and crossing over in sordaria answers - Advanced Pathophisolgy - Soil lab - Networking foundations pdf - P3 - 2 wire irrigation system - Who gets rid of gregor's corpse after his death - Asia pacific journal of multidisciplinary research - How to customize quickbooks online dashboard - Shoreditch hall brunel university - 3m chrome pinstripe tape - 7 levels of tension - 9 ones 2 thousandths - Industrial health and hygiene ppt - Parallel lines and proportional parts homework answers - Blood music pdf - What might a french peasant have grumbled about in 1789 - Emergency department process flow chart - Astrand rhyming cycle ergometer test - Northern rivers bushwalking club - Ib history paper 2 grade boundaries - Strayer discussion - The cask of amontillado annotations pdf - Macon controls produces three different - Modern family homework hours scene - Hesta income stream performance - Death is the fairest cover for her shame - Would an animal cell survive without mitochondria - Prc gaap vs us gaap - Ghetto until proven fashionable black vogue - Serial position effect lab report - Equifax breach paper - Dhashvanth name meaning in tamil - Assignment 3: America as Superpower-Confrontation in a Nuclear Age (1947-Present) - Simquick process simulation with excel pdf - Consider an air solar collector that is wide - Psychology In The World - Final (Essay) - Need a discussion question 200 words min w/ references - Short question (200words) - Team operating principles example - Intended only for brilliant answers - Ralph covert drivin in my car - Network flow models - Cisco aironet 1240ag firmware - Baking soda and vinegar is exothermic or endothermic - Strategic importance of cloud computing in business organizations - "Assignment 2.2: Liberty Challenged in Nineteenth Century America Final Paper" - INT Wk 11 DQ 1 - Mbs direct umuc - Artist gallery consignment agreement - LOCAL, STATE, FEDERAL LEVELS OF LAW ENFORCMENT ASSIGNMENT CJT101 - The ugly american book sparknotes - Tipping point leadership ppt - Applied statistics in business and economics 4th edition - Spatial patterns of advantage and disadvantage in sydney - Difference between cellular respiration and fermentation - Quanser rapid control prototyping toolkit - Which of the following best defines what a provider referral is? - Pantheon columns style - Reaction rates worksheet answers - NURS-6050N-66/NURS-6050C-66-Policy & Advocacy - Social legal and ethical issues in marketing - Hydraulic coefficient of orifice experiment - Cpa ontario important dates - Cosmic ferro alloys ltd credit rating - What type of innovation is the milo sensor wristband - Become a tafe teacher - A hollow conducting sphere with an outer radius of - Prewriting graphic organizer for 01.14 beginning your narrative - Behold a pale horse debunked - Martinez company's relevant range of production - Ibm rational doors training ppt - Bt graduate software engineer - Angola prison documentary netflix - How many trips originate in each state - The other bennet sister - Dean tennis club booking - Journal Article(NCM) - Types of business writing exam - William stallings computer networks - Fair trading major defect - Economists in the field of industrial organization study how - How does thiobacillus denitrificans help bioremediate groundwater - Eastern sherbrooke forest walk map - Institute of medicine six domains of healthcare quality - The story of an hour central idea - Hydrogen gas is collected by water displacement - Expedia partner central evc lookup - Discussion - Csi web adventures rookie training - C229 paper - Whats the square root of 42 - A small business just leased - You plan to invest in the kish hedge fund