算法的重要性,我就不多说了吧,想去大厂,就必须要经过基础知识和业务逻辑面试+算法面试。所以,为了提高大家的算法能力,这个公众号后续每天带大家做一道算法题,题目就从LeetCode上面选 ! 今天和大家聊的问题叫做 根据二叉树创建字符串,我们先来看题面:https://leetcode.cn/problems/construct-string-from-binary-tree/ Given the root of a binary tree, construct a string consisting of parenthesis and integers from a binary tree with the preorder traversal way, and return it.Omit all the empty parenthesis pairs that do not affect the one-to-one mapping relationship between the string and the original binary tree. 给你二叉树的根节点 root ,请你采用前序遍历的方式,将二叉树转化为一个由括号和整数组成的字符串,返回构造出的字符串。 空节点使用一对空括号对 "()" 表示,转化后需要省略所有不影响字符串与原始二叉树之间的一对一映射关系的空括号对。 示例 上期推文:LeetCode1-600题汇总,希望对你有点帮助! LeetCode刷题实战601:体育馆的人流量LeetCode刷题实战602:好友申请 II :谁有最多的好友LeetCode刷题实战603:连续空余座位 LeetCode刷题实战604:迭代压缩字符串 LeetCode刷题实战605:种花问题