摘要:
游标步长与循环不变量概念 阅读全文
摘要:
字符数组本质上还是数组,在数组上使用的方法技巧在字符数组上同样适用 阅读全文
摘要:
与Valid-Anagram类似 阅读全文
摘要:
大问题拆分为子问题,使用了对称的思想,再利用边界条件,降低自由变量的个数,与Two Sum完全可以类比 阅读全文
摘要:
分析 Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each 阅读全文
摘要:
快乐数的检测过程实际上是一个寻找循环的过程,无论是1自身的循环,还是在有限空间内的循环 阅读全文
摘要:
双指针方式,本质是遍历,遍历过程将问题一分为二,拆分为已解决和未解决的问题 阅读全文