CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Implemting Tree

  1. #1
    Join Date
    Jun 2002
    Posts
    29

    Implemting Tree

    Hello All,

    I need to create a Tree, which should be able to contain huge data and provide me fast lookups. I am not interested in sort order.

    I am planning to use STLPORT's has maps for it. Can any body please tell me whether it is a right choise or not. If not which data structure should be used.

    Thanks
    Ritu

  2. #2
    Join Date
    Nov 2004
    Posts
    1

    Re: Implemting Tree

    If the data that you are storing is ASCII data then in that case you can use Tries or PATRICIA trees . These trees might help you to retrieve the information fast.

    -Shalu

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured