toPostfixNotation method
Implementation
String toPostfixNotation() {
_postfixNotation = '';
_postOrderTraversal(_root);
return _postfixNotation;
}
String toPostfixNotation() {
_postfixNotation = '';
_postOrderTraversal(_root);
return _postfixNotation;
}