Skip to content

Commit 844cfa6

Browse files
authored
fix($53): 修改为新浪图床
1 parent 6b06c7d commit 844cfa6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

problems/53.maximum-sum-subarray-cn.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ If you have figured out the O(n) solution, try coding another solution using the
7676
分别求出三种情况下最大子序列和,三者中最大值即为最大子序列和。
7777

7878
举例说明,如下图:
79-
![maximum subarray sum divide conquer](../assets/problems/53.maximum-sum-subarray-divideconquer.png)
79+
![](https://tva1.sinaimg.cn/large/0082zybply1gbv3hguiadj31400u044t.jpg)
8080

8181
#### 复杂度分析
8282
- *时间复杂度:* `O(nlogn) - n 是数组长度`
@@ -102,7 +102,7 @@ If you have figured out the O(n) solution, try coding another solution using the
102102
- `maxSum = max(currMaxSum, maxSum)`
103103

104104
如图:
105-
![maximum subarray sum dp](../assets/problems/53.maximum-sum-subarray-dp.png)
105+
![](https://tva1.sinaimg.cn/large/0082zybply1gbv3hpz9tvj30pj0h2dh1.jpg)
106106

107107
#### 复杂度分析
108108
- *时间复杂度:* `O(n) - n 是数组长度`

0 commit comments

Comments
 (0)