【 声明:版权全部,转载请标明出处,请勿用于商业用途。 联系信箱:libin493073668@sina.com】 题目链接:https://leetcode.com/problems/unique-paths-ii/ 题意: 给定一个二维矩阵,当中0代表这个位置能够走。1代表这个位置不能走,还是从 ...
分类:
其他好文 时间:
2017-07-04 09:47:15
阅读次数:
160
Question: Leedcode提交代码:Runtime: 19 ms 完整可运行代码: 注: ①最开始使用一个String变量ans进行循环,导致每轮次ans之间混乱,加入curr变量,解决这个问题。 ② String与StringBuilder之间的区别: String:字符串常量 Stri ...
分类:
其他好文 时间:
2017-06-27 23:41:41
阅读次数:
381
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of ...
分类:
其他好文 时间:
2017-03-17 16:41:50
阅读次数:
200
Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below ...
分类:
其他好文 时间:
2017-03-16 23:48:17
阅读次数:
219
https://leetcode.com/problems/longest-palindromic-substring/ 求最大回文的长度,其实这道题比上一道有意思。 方法1 循环查询 (该方案为O(N*N*N)) 方法2 动态规划 (该方案为O(N*N)) 由于没学过动态规划,特意去学习了一下 方 ...
分类:
其他好文 时间:
2016-10-20 22:02:08
阅读次数:
246
https://leetcode.com/problems/median-of-two-sorted-arrays/ There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median o ...
分类:
其他好文 时间:
2016-10-20 21:36:58
阅读次数:
176
寻找最长的不重复串,略像滑动窗口。 上面这个粗鲁的代码,马马虎虎毕竟打败51 ~61%的code,lastIndexOf有优化的空间。 不过答案真是美妙的活动窗口实现,赞!使用了字符作为坐标,索引作为值。 ...
分类:
其他好文 时间:
2016-10-08 18:48:59
阅读次数:
112
1、Add Two Numbers——这是leedcode的第二题:
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two num...
分类:
其他好文 时间:
2016-05-13 00:02:34
阅读次数:
394
1、ZigZag Conversion——这是leedcode的第六题:
The string “PAYPALISHIRING” is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better l...
分类:
其他好文 时间:
2016-05-12 18:59:13
阅读次数:
124
1、Median of Two Sorted Arrays——这是leedcode的第四题:
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity shou...
分类:
其他好文 时间:
2016-05-12 16:29:12
阅读次数:
223