From d31a167b83607019ac139e6cb02e01bd2a1a10a3 Mon Sep 17 00:00:00 2001 From: SunTao Date: Mon, 14 May 2018 18:00:32 +0800 Subject: [PATCH 1/2] Update HTTP.md --- notes/HTTP.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/HTTP.md b/notes/HTTP.md index 888dcc06..a0465acf 100644 --- a/notes/HTTP.md +++ b/notes/HTTP.md @@ -444,7 +444,7 @@ Cache-Control: no-store (二)强制确认缓存 -no-store 指令规定缓存服务器需要先向源服务器验证缓存资源的有效性,只有当缓存资源有效才将能使用该缓存对客户端的请求进行响应。 +no-cache 指令规定缓存服务器需要先向源服务器验证缓存资源的有效性,只有当缓存资源有效才将能使用该缓存对客户端的请求进行响应。 ```html Cache-Control: no-cache From d124a420ab8f1f6ebe3e2ddc6fc830aae91babb0 Mon Sep 17 00:00:00 2001 From: zhaoyu Date: Wed, 16 May 2018 15:46:04 +0800 Subject: [PATCH 2/2] =?UTF-8?q?Update=20Leetcode=20=E9=A2=98=E8=A7=A3.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit typo fix --- notes/Leetcode 题解.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/Leetcode 题解.md b/notes/Leetcode 题解.md index 2c21fd4c..36914e95 100644 --- a/notes/Leetcode 题解.md +++ b/notes/Leetcode 题解.md @@ -2365,7 +2365,7 @@ private int rob(int[] nums, int first, int last) { 定义一个数组 dp 存储错误方式数量,dp[i] 表示 i 个信和信封的错误方式数量。假设第 i 个信装到第 j 个信封里面,而第 j 个信装到第 k 个信封里面。根据 i 和 k 是否相等,有两种情况: - i==k,交换 i 和 k 的信后,它们的信和信封在正确的位置,但是其余 i-2 封信有 dp[i-2] 种错误装信的方式。由于 j 有 i-1 种取值,因此共有 (i-1)\*dp[i-2] 种错误装信方式。 -- i != k,交换 i 和 j 的信后,第 i 个信和信封在正确的位置,其余 i-1 封信有 dp[i-1] 种错误装信方式。由于 j 有 i-1 种取值,因此共有 (n-1)\*dp[i-1] 种错误装信方式。 +- i != k,交换 i 和 j 的信后,第 i 个信和信封在正确的位置,其余 i-1 封信有 dp[i-1] 种错误装信方式。由于 j 有 i-1 种取值,因此共有 (i-1)\*dp[i-1] 种错误装信方式。 综上所述,错误装信数量方式数量为: