会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
敲代码啊敲代码。。。
博客园
首页
新随笔
联系
管理
订阅
1
2
3
下一页
2020年1月17日
LeetCode 283. 移动零(C#实现)——数组
摘要: 一、问题 https://leetcode-cn.com/problems/move-zeroes/ 给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。 示例: 输入: [0,1,0,3,12] 输出: [1,3,12,0,0] 说明: 必须在原数组上操作
阅读全文
posted @ 2020-01-17 16:09 落花流水Zxxxx
阅读(348)
评论(0)
推荐(0)
2020年1月7日
LeetCode 21. 合并两个有序链表(C#实现)——链表,递归,迭代
摘要: 一、问题 https://leetcode-cn.com/problems/merge-two-sorted-lists/ 二、GitHub实现:https://github.com/JonathanZxxxx/LeetCode/blob/master/MergeTwoListsClass.cs B
阅读全文
posted @ 2020-01-07 19:59 落花流水Zxxxx
阅读(601)
评论(0)
推荐(0)
LeetCode 206. 反转链表(C#实现)——链表,递归,迭代
摘要: 一、问题 https://leetcode-cn.com/problems/reverse-linked-list/ 二、GitHub实现:https://github.com/JonathanZxxxx/LeetCode/blob/master/ReverseListClass.cs Blog:h
阅读全文
posted @ 2020-01-07 16:42 落花流水Zxxxx
阅读(268)
评论(0)
推荐(0)
2020年1月6日
LeetCode 104. 二叉树的最大深度(C#实现)——二叉树,BFS,DFS,递归,迭代
摘要: 一、问题https://leetcode-cn.com/problems/maximum-depth-of-binary-tree/ 二、GitHub实现:https://github.com/JonathanZxxxx/LeetCode/blob/master/MaxDepthClass.cs B
阅读全文
posted @ 2020-01-06 17:06 落花流水Zxxxx
阅读(611)
评论(0)
推荐(0)
LeetCode 226. 翻转二叉树(C#实现)——二叉树,递归,迭代
摘要: 一、问题 https://leetcode-cn.com/problems/invert-binary-tree/ 二、GitHub实现:https://github.com/JonathanZxxxx/LeetCode/blob/master/InvertTreeClass.cs Blog:htt
阅读全文
posted @ 2020-01-06 11:59 落花流水Zxxxx
阅读(430)
评论(0)
推荐(0)
2020年1月2日
LeetCode 461. 汉明距离(C#实现)——位操作
摘要: 一、问题 https://leetcode-cn.com/problems/hamming-distance/ 二、GitHub实现:https://github.com/JonathanZxxxx/LeetCode/blob/master/HammingDistanceClass.cs Blog:
阅读全文
posted @ 2020-01-02 16:17 落花流水Zxxxx
阅读(389)
评论(0)
推荐(0)
LeetCode 617. 合并二叉树(C#实现)——二叉树,递归,迭代
摘要: 一、问题 https://leetcode-cn.com/problems/merge-two-binary-trees/ 二、GitHub实现:https://github.com/JonathanZxxxx/LeetCode/blob/master/MergeClass.cs Blog:http
阅读全文
posted @ 2020-01-02 11:22 落花流水Zxxxx
阅读(265)
评论(0)
推荐(0)
2019年11月1日
LeetCode 813. 最大平均值和的分组(C#实现)——动态规划
摘要: 一、问题 https://leetcode-cn.com/problems/largest-sum-of-averages/solution/ 二、GitHub实现:https://github.com/JonathanZxxxx/LeetCode/blob/master/Class813.cs B
阅读全文
posted @ 2019-11-01 16:06 落花流水Zxxxx
阅读(437)
评论(0)
推荐(0)
2019年10月24日
LeetCode 520. 检测大写字母(C#实现)——字符串
摘要: 问题:https://leetcode-cn.com/problems/detect-capital/submissions/ GitHub实现:https://github.com/JonathanZxxxx/LeetCode/blob/master/Class520.cs Blog:https:
阅读全文
posted @ 2019-10-24 15:26 落花流水Zxxxx
阅读(256)
评论(0)
推荐(0)
2019年10月23日
LeetCode 33. 搜索旋转排序数组(C#实现)——二分查找
摘要: 问题:https://leetcode-cn.com/problems/search-in-rotated-sorted-array/submissions/ GitHub实现:https://github.com/JonathanZxxxx/LeetCode/blob/master/Class33
阅读全文
posted @ 2019-10-23 11:51 落花流水Zxxxx
阅读(243)
评论(0)
推荐(1)
1
2
3
下一页
公告