Given two sentences words1, words2 (each represented as an array of strings), and a list of similar word pairs pairs, determine if two sentences are s ...
分类:
其他好文 时间:
2017-12-03 11:45:11
阅读次数:
194
Given two sentences words1, words2 (each represented as an array of strings), and a list of similar word pairs pairs, determine if two sentences are s ...
分类:
其他好文 时间:
2017-12-01 19:35:19
阅读次数:
168
Time Complexity: O(N*K), Space Complexity: O(1) The idea is similar to the problem Paint House I, for each house and each color, the minimum cost of p ...
分类:
其他好文 时间:
2017-11-30 13:37:47
阅读次数:
184
某些网站为了实现友好的用户交互,提供了一种自定义的错误页面,而不是显示一个大大的404 ,比如CSDN上的404提示页面如下: 这样虽然提高了用户体验,但是在编写对应POC进行检测的时候如果只根据返回的HTTP头部信息判断,则很可能造成误报,为了能准确检测到404页面, 需要从状态码和页面内容两个方 ...
分类:
编程语言 时间:
2017-11-28 23:12:42
阅读次数:
291
题目描述 大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项。 n<=39 要记住第n项,指的是1开始,因为下标会小一个数,下标从0开始。 class Solution { public: int Fibonacci(int n) { int a = 1; int b = ...
分类:
其他好文 时间:
2017-11-27 21:32:06
阅读次数:
107
斐波那契数列 Fibonacci sequences(fei bo na qi):0、1、1、2、3、5、8、13、21、34…… 递归算法: 迭代算法: ...
分类:
编程语言 时间:
2017-11-26 15:57:06
阅读次数:
226
直接使用递归的方法会导致TLE,加个缓存就好了: 或者使用迭代法: 题目来源: http://www.lintcode.com/zh-cn/problem/fibonacci/ ...
分类:
其他好文 时间:
2017-11-26 11:21:22
阅读次数:
182
题目描述 大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项。 n<=39 大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项。 n<=39 n<=39 基础编程~ 代码: ...
分类:
其他好文 时间:
2017-11-25 18:24:57
阅读次数:
85
(说明:本博客中的题目、题目详细说明及参考代码均摘自 “何海涛《剑指Offer:名企面试官精讲典型编程题》2012年”) 题目 1. 写一个函数,输入 n, 求斐波那契(Fibonacci)数列的第 n 项。斐波那契数列的定义如下: 2. 一只青蛙一次可以跳上 1 级台阶,也可以跳上 2 级。求该青 ...
分类:
编程语言 时间:
2017-11-25 17:33:39
阅读次数:
158