CPSC 220 Fall 2004
Program 4: A Spell Checker Web Interface
Your assignment is to write a web interface for your dictionary program.
Your interface should allow the user
to enter an arbitrary quantity of text, and when it is submitted
should return a page containing the same text with misspelled words
highlighted (e.g., in another color or font). There should also be
a convenient mechanism, such as clicking on the word, to go to a list of
suggested correct spellings. For now, this list may contain just the last
word that you found before determining that the given word was not
in the dictionary.
Guidelines
-
You may use any of your efficient
dictionary programs that you are confident works
correctly.
- Look up alphanumeric tokens only; ignore punctuation.
- You may discuss both design and implementation with others in the class,
and I encourage you to do so. However, you may not simply take any portion
of someone else's code to use as your own. You must each turn in your own
program.