AVL tree help - C++

I need help with two functions. One I need my OSTREAM to upload into a AVL tree. what am i doing wrong? my output keeps coming back size() =0

also i thnk it is failing because my getword() function is returning a empty string (" "). please assist if you can...
Last edited on
my output keeps coming back size() =0
In your Write(...) function wordMap_ is a local variable that does not have any content. If this variable would exist in DocumentIndex that member variable will not be used.

In GetWord() beginPosition_ will also be empty/uninitialized.
Topic archived. No new replies allowed.