This repository contains a Java implementation of a generic HashTable designed to find the frequency of words in sentences and handle word removal.
The repository is organized as follows:
.gitignore: Specifies intentionally untracked files to ignore.src/com/bridgelabz/hashTableGenerics/MyMapNode.java: Defines theMyMapNodeclass representing a node in the HashTable.src/com/bridgelabz/hashTableGenerics/myHashTable.java: Implements themyHashTableclass for creating and manipulating the HashTable.src/com/bridgelabz/hashTableGenerics/WordFrequencyCounter.java: Demonstrates the ability to find the frequency of words in sentences.src/com/bridgelabz/hashTableGenerics/RemoveWords.java: Demonstrates the ability to remove specific words from a sentence.
| # | Usecase | Description | Link |
|---|---|---|---|
| UC1 | Word Frequency | Find the frequency of words in a sentence | Word Frequency |
| UC2 | Large Paragraph | Find frequency of words in a large paragraph | Large Paragraph |
| UC3 | Remove Words | Remove specific words from a given sentence | Remove Words |