Advertisement
Koenrad

Untitled

Jun 1st, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.11 KB | None | 0 0
  1. WordNode(const string& s) : word(s), count(1) {}
  2.  
  3. versus
  4.  
  5. WordNode(const string& s) {
  6.     count(1);
  7.     word(s);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement