tikimyster

stree.cpp

May 8th, 2012
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include "stree.h"
  2. #include <string>
  3.  
  4. //tree::Node:: ~Node
  5. //  {
  6. //  delete mLeft;
  7. //  delete mRight;
  8. //  }
  9. //bool tree::insert(std::string value)
  10. //{
  11. //  if(!mRoot)
  12. //  {
  13. //   mRoot = new Node(value);
  14. //   return true;
  15. //  }
  16. //
  17. ////}
  18. //bool tree::Node *tree::insert(string value, Node *mRoot)
Advertisement
Add Comment
Please, Sign In to add comment