Leetcode 455. Assign Cookies
Posted Z-Pilgrim
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 455. Assign Cookies相关的知识,希望对你有一定的参考价值。
https://leetcode.com/problems/assign-cookies/description/
bool cmp(const int a, const int b)
return a < b;
class Solution
public:
int findContentChildren(vector<int>& g, vector<int>& s)
sort(g.begin(), g.end(), cmp);
sort(s.begin(), s.end(), cmp);
int i = g.size() - 1, j = s.size() - 1;
int ret = 0;
while ( i >= 0 && j >= 0 )
// cout << s[j] << "->" << g[i] << endl;
if (s[j] >= g[i] )
ret++;
j--,i--;
else
i--;
return ret;
;
以上是关于Leetcode 455. Assign Cookies的主要内容,如果未能解决你的问题,请参考以下文章
[leetcode greedy]455. Assign Cookies
[leetcode]Greedy-455. Assign Cookies
Leetcode——455 Assign Cookies(分发饼干)