Skip to content

Commit f25f062

Browse files
committed
update 455.分发饼干; 代码报错
1 parent 49690a1 commit f25f062

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

problems/0455.分发饼干.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ public:
7373
}
7474
};
7575
```
76+
* 时间复杂度:O(nlogn)
77+
* 空间复杂度:O(1)
7678
77-
- 时间复杂度:O(nlogn)
78-
- 空间复杂度:O(1)
7979
8080
从代码中可以看出我用了一个 index 来控制饼干数组的遍历,遍历饼干并没有再起一个 for 循环,而是采用自减的方式,这也是常用的技巧。
8181
@@ -119,9 +119,9 @@ public:
119119
}
120120
};
121121
```
122+
* 时间复杂度:O(nlogn)
123+
* 空间复杂度:O(1)
122124

123-
- 时间复杂度:O(nlogn)
124-
- 空间复杂度:O(1)
125125

126126
细心的录友可以发现,这种写法,两个循环的顺序改变了,先遍历的饼干,在遍历的胃口,这是因为遍历顺序变了,我们是从小到大遍历。
127127

@@ -177,9 +177,7 @@ class Solution {
177177
```
178178

179179
### Python
180-
181180
贪心 大饼干优先
182-
183181
```python
184182
class Solution:
185183
def findContentChildren(self, g, s):
@@ -194,9 +192,7 @@ class Solution:
194192
return result
195193

196194
```
197-
198195
贪心 小饼干优先
199-
200196
```python
201197
class Solution:
202198
def findContentChildren(self, g, s):
@@ -382,9 +378,7 @@ object Solution {
382378
}
383379
}
384380
```
385-
386381
### C#
387-
388382
```csharp
389383
public class Solution
390384
{

0 commit comments

Comments
 (0)