Skip to content

Commit

Permalink
Update verify-preorder-serialization-of-a-binary-tree.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
kamyu104 committed Feb 1, 2016
1 parent c504135 commit 304c025
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion C++/verify-preorder-serialization-of-a-binary-tree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Solution {
return i == tokens.size() - 1;
}

class Tokenizer {
class Tokenizer {
public:
Tokenizer(const string& str) : str_(str), i_(0), cnt_(0) {
size_ = count(str_.cbegin(), str_.cend(), ',') + 1;
Expand Down

0 comments on commit 304c025

Please sign in to comment.