-
Tries
Hi everyone,
I have been given a problem in which I have to implement a Trie that stores words.
The important methods of the Trie are:
getAllWords(): returns a String array of all the words in the Trie.
hasWord(String s): returns whether the Trie has s or not
hasPrefix(String p):returns whether the Trie contains p or not.
I have made a TrieNode class. Each TrieNode has an array that stores 27 other TrieNodes(for 26 alphabets, and one to indicate the end of a word).A TrieNode also has a char value.
Can someone pls implement the methods given above for me. I have tried a lot but I couldnt do them. The methods are to be done recursively.
I have to find a solution to this problem by 12 noon tomorrow (apr 4, 12 noon (EST)).
Any help would be greatly appreciated.
P.S. the handout for the assignment is attatched with this message.
Thanks.
-
My mistake, there is no handout attatched with this message.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks