trie data structure

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

Does anyone have an example of a trie data structure implemented in c#? I'm
looking for a string trie to use to hold the word list for my spell checker.
Any examples or suggestions would be great.

thanks
Paul
 
Use a List of Lists. There's no tree implementation in C#, as there's no
need. (Since all objects have "Object" as their base class)

-vJ
 
Hi Paul,

Based on my understanding, you want to use trie data structure in your
application.

Actually, .Net Framework does not have build-in trie data structure.

I think you should follow some data structure tuturial to implement one
yourself, it is not too complex.

Thank you for your patience and cooperation. If you have any questions or
concerns, please feel free to post it in the group. I am standing by to be
of assistance.

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
 
Hi Paul,

Does my reply make sense to you? Do you still have any concern on this
issue?

Please feel free to post. Thanks

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top