-
Notifications
You must be signed in to change notification settings - Fork 0
vikeshkhanna/newspeak
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
NewSpeak is a Google Chrome Extension that converts common short hand words into proper English. A c++ file uses a dictionary mapping to create a trie that is serialized into a json object file subsequently loaded by the extension's scripts. The conversion has a time complexity of O(n) because of the trie but since the entire trie is loaded in memory, the space complexity isn't the best. A better approach for larger scale dictionaries would be to run the translator as a remote service and send queries to this service for conversion. The trie would then be restricted to that remote process leading to better performance on client side.
About
Google Chrome Extension to convert short hand words to proper English
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published