文件名称:LeetShitCode:在LeetCode中锻炼身体
文件大小:17KB
文件格式:ZIP
更新时间:2024-04-23 08:28:08
LeetShitCode 在LeetCode中锻炼身体 壹·剑指优惠 重建二叉树 /* 二叉树的特性是子树和原树的结构的相似性,注意合理应用这个特点进行递归计算, 把问题拆分成对每个子树来解决。unordered_map可以用于查找的情况下,时间复杂度为O(1)。 */ /* * * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { private: unordered_map< int> index; p
【文件预览】:
LeetShitCode-main
----README.md(21KB)
----README.assets()
--------image-20210401163921484.png(10KB)