public class Solution { public ListbinaryTreeToLists(TreeNode root) { List res = new ArrayList<>(); if(root == null) { return res; } Queue queue = new LinkedList<>(); queue.offer(root); while(!queue.isEmpty()) { int levelNum = queue.size(); ListNode dummy = new ListNode(-1); ListNode tmp = dummy; //tmp -- the last ListNode for(int i = 0; i < levelNum; ++i) { TreeNode out = queue.poll(); pre.next = new ListNode(out.val); pre = pre.next; if(out.left != null) { queue.offer(out.left); } if(out.right != null) { queue.offer(out.right); } } res.add(dummy.next); } return res; } }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/77408.html
Valid Palindrome Problem Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. Example A man, a plan, a canal: Panama is a palindrome. race a ca...
摘要:找到开头的某个进行切割。剩下的部分就是相同的子问题。记忆化搜索,可以减少重复部分的操作,直接得到后的结果。得到的结果和这个单词组合在一起得到结果。 Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome...
摘要:自己没事刷的一些的题目,若有更好的解法,希望能够一起探讨项目地址 自己没事刷的一些LeetCode的题目,若有更好的解法,希望能够一起探讨 Number Problem Solution Difficulty 204 Count Primes JavaScript Easy 202 Happy Number JavaScript Easy 190 Reverse Bi...
摘要:在线网站地址我的微信公众号完整题目列表从年月日起,每天更新一题,顺序从易到难,目前已更新个题。这是项目地址欢迎一起交流学习。 这篇文章记录我练习的 LeetCode 题目,语言 JavaScript。 在线网站:https://cattle.w3fun.com GitHub 地址:https://github.com/swpuLeo/ca...我的微信公众号: showImg(htt...
摘要:月下半旬攻略道题,目前已攻略题。目前简单难度攻略已经到题,所以后面会调整自己,在刷算法与数据结构的同时,攻略中等难度的题目。 Create by jsliang on 2019-07-30 16:15:37 Recently revised in 2019-07-30 17:04:20 7 月下半旬攻略 45 道题,目前已攻略 100 题。 一 目录 不折腾的前端,和咸鱼有什么区别...
阅读 3210·2023-04-26 02:10
阅读 2791·2021-10-12 10:12
阅读 4387·2021-09-27 13:35
阅读 1426·2019-08-30 15:55
阅读 972·2019-08-29 18:37
阅读 3320·2019-08-28 17:51
阅读 1890·2019-08-26 13:30
阅读 1106·2019-08-26 12:09