LeetCode-Algorithms-[Hard]297. 二叉樹的序列化與反序列化

297. 二叉樹的序列化與反序列化node // Encodes a tree to a single string. public String serialize(TreeNode root) { if (root == null) { return "[]"; } StringBuilder sb = new StringBuilder("["); Que
相關文章
相關標籤/搜索