码迷,mamicode.com
首页 >  
搜索关键字:definition    ( 2735个结果
Leetcode1382.将二叉搜索树变平衡
题目 代码 /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NU ...
分类:其他好文   时间:2020-11-10 10:47:27    阅读次数:5
Leetcode 对称二叉树
Leetcode 101 数据结构定义: /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x ...
分类:其他好文   时间:2020-11-07 16:16:53    阅读次数:21
Leetcode(easy ListNode)
Leetcode easy ListNode Leetcode 简单链表题目 21 合并两个有序链表 题目:将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 /** * Definition for singly-linked list. * publ ...
分类:其他好文   时间:2020-11-06 02:28:36    阅读次数:19
Leetcode 104. 二叉树的最大深度
题解:递归求左右子树的最大深度。 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { ...
分类:其他好文   时间:2020-11-06 01:10:43    阅读次数:21
求根到叶子节点数字之和
##前序遍历+判断 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x ...
分类:其他好文   时间:2020-10-30 11:39:04    阅读次数:14
Leetcode 114 Flatten Binary Tree to Linked List
题目介绍 给定二叉树,将其原地变成一个链表。 Example: 1 / \ 2 5 / \ \ 3 4 6 1 \ 2 \ 3 \ 4 \ 5 \ 6 Solutions 直观解法 发现链表的结果与先序遍历一致,因此先进行先序遍历,再根据遍历的结果构造链表。 # Definition for a b ...
分类:其他好文   时间:2020-10-26 11:17:57    阅读次数:15
Segment BANKED_CODE must be defined in a segment definition option (-Z, -b or -P)
是链接(Link)时出错:Fatal Error[e72]: Segment BANKED_CODE must be defined in a segment definition option (-Z, -b or -P)原因是IAR新版本使用旧版本文件 解决方法:打开project->optio ...
分类:其他好文   时间:2020-10-26 11:08:03    阅读次数:23
二叉树后续遍历的几种方式
二叉树的后续遍历(Leetcode 145) 数据结构定义: // Definition for a binary tree node. public class TreeNode { int val; TreeNode left; TreeNode right; TreeNode() {} Tre ...
分类:其他好文   时间:2020-10-24 10:25:33    阅读次数:22
Understanding about Baire Category Theorem
Definition (Nowhere dense set) A set $A$ in a topological space $X$ is nowhere dense if the complement of its closure is dense in $X$, i.e. $\overline ...
分类:其他好文   时间:2020-10-22 22:47:57    阅读次数:24
21. 合并两个有序链表(Leetcode)
题目: 将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNode *nex ...
分类:其他好文   时间:2020-10-07 20:36:35    阅读次数:21
2735条   上一页 1 ... 5 6 7 8 9 ... 274 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!