根據二叉樹建立字符串

題目 題目來源: LeetCode web 實現 //左子樹爲空,右子樹存在 //左子樹存在 //右子樹爲空 void _Tree2str(struct TreeNode* root, char* str){ if(!root){ return; } char* valuestr[10]; sprintf(valuestr, "%d", root-
相關文章
相關標籤/搜索