码迷,mamicode.com
首页 >  
搜索关键字:definition    ( 2735个结果
lc 反转链表
链接:https://leetcode-cn.com/problems/reverse-linked-list/ 代码: /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; ...
分类:其他好文   时间:2020-05-24 23:53:03    阅读次数:71
226. 翻转二叉树
翻转一棵二叉树。 示例: 输入: 4/ \2 7/ \ / \1 3 6 9输出: 4/ \7 2/ \ / \9 6 3 1 python # Definition for a binary tree node. # class TreeNode: # def __init__(self, x): ...
分类:其他好文   时间:2020-05-24 13:56:30    阅读次数:47
swagger--Failed to load API definition.
打开 http://localhost:5000/swagger/v1/swagger.json 提示错误 An unhandled exception occurred while processing the request. NotSupportedException: HTTP method ...
分类:Windows程序   时间:2020-05-23 18:47:00    阅读次数:367
589. N叉树的前序遍历
地址:https://leetcode-cn.com/problems/n-ary-tree-preorder-traversal/ /** * Definition for a Node. * class Node { * public $val = null; * public $childre ...
分类:其他好文   时间:2020-05-22 11:21:44    阅读次数:44
LeetCode 2. 两数相加 Add Two Numbers
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solu ...
分类:其他好文   时间:2020-05-20 12:40:43    阅读次数:58
Leetcode练习(Python):树类:第104题:二叉树的最大深度:给定一个二叉树,找出其最大深度。 二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。 说明: 叶子节点是指没有子节点的节点。
题目: 二叉树的最大深度:给定一个二叉树,找出其最大深度。 二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。 说明: 叶子节点是指没有子节点的节点。 思路: 借助层序遍历来做,有多少层树就有多深。 程序: # Definition for a binary tree node. # clas ...
分类:编程语言   时间:2020-05-19 11:06:30    阅读次数:164
FPGAer:EEPROM读写实战
使用FPGA向EEPROM写入0、1、2...255,再使用FPGA读取EEPROM 是否有这256个数据。 EEPROM是通过IIC协议进行通信的,以下对IIC通信协议分析: ①start definition: 所以开始IIC时需要SCL和SDA都是0。 ②数据稳定和数据变化: 从中可以看出SC ...
分类:其他好文   时间:2020-05-18 22:33:27    阅读次数:78
Leetcode练习(Python):树类:第100题:相同的树:给定两个二叉树,编写一个函数来检验它们是否相同。 如果两个树在结构上相同,并且节点具有相同的值,则认为它们是相同的。
题目: 相同的树:给定两个二叉树,编写一个函数来检验它们是否相同。 如果两个树在结构上相同,并且节点具有相同的值,则认为它们是相同的。 思路: 递归秒解,思路也简单。 程序: # Definition for a binary tree node. # class TreeNode: # def _ ...
分类:编程语言   时间:2020-05-18 21:01:41    阅读次数:86
LeetCode 234. 回文链表 Palindrome Linked List (Easy)
请判断一个链表是否为回文链表。 来源:力扣(LeetCode) /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), ...
分类:其他好文   时间:2020-05-17 20:39:27    阅读次数:85
Leetcode练习(Python):栈类:第173题:二叉搜索树迭代器:实现一个二叉搜索树迭代器。你将使用二叉搜索树的根节点初始化迭代器。 调用 next() 将返回二叉搜索树中的下一个最小的数。
题目: 二叉搜索树迭代器:实现一个二叉搜索树迭代器。你将使用二叉搜索树的根节点初始化迭代器。 调用 next() 将返回二叉搜索树中的下一个最小的数。 思路: 二叉搜索树使用中序,然后弹出栈底。 程序: # Definition for a binary tree node. # class Tre ...
分类:编程语言   时间:2020-05-16 10:55:17    阅读次数:70
2735条   上一页 1 ... 17 18 19 20 21 ... 274 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!