Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theanuragshukla/javafx-notepad
A very simple yet algorithmically smart notepad. It's a PoC for real world application of the algorithms
https://github.com/theanuragshukla/javafx-notepad
algorithms autocomplete java javafx notepad openjfx prefix-tree
Last synced: about 2 months ago
JSON representation
A very simple yet algorithmically smart notepad. It's a PoC for real world application of the algorithms
- Host: GitHub
- URL: https://github.com/theanuragshukla/javafx-notepad
- Owner: theanuragshukla
- Created: 2024-06-23T19:05:48.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-06-24T05:55:17.000Z (7 months ago)
- Last Synced: 2024-10-13T18:41:17.547Z (3 months ago)
- Topics: algorithms, autocomplete, java, javafx, notepad, openjfx, prefix-tree
- Language: Java
- Homepage:
- Size: 1.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Smart Notepad using JavaFX
A very simple yet algorithmically smart notepad. It's a PoC for real world application of the algorithms other than solving leetcode problems:)
## Working
### UI
1. uses OpenJFX for creating a User Interface for interacting with the internal data structures.### Inner Implementation
1. Uses a weighted Trie (Prefix Tree) for storing a dictionary of word and then adjust the weights as the user starts generating feedback, either by accepting suggestions or by typing new words.## Features
- simple UI
- Built-in autocomplete feature
- learning on the go as you type## Planned
- Full Editor controls
- Integrate word replacement -> Alpha
- Persistent memory## Improvements
- Implement Suggest Trees (Suffix Tree) in place of Prefix Tree for more efficient and Roubust autocomplete mechanism.