LeetCode题解之 Assign Cookies
Posted 山里的小勇子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode题解之 Assign Cookies相关的知识,希望对你有一定的参考价值。
1、题目描述
2、问题分析
使用贪心算法。
3 代码
1 class Solution { 2 public: 3 4 int findContentChildren(vector<int>& g, vector<int>& s) { 5 int nums = 0; 6 sort(g.begin(), g.end()); 7 sort(s.begin(), s.end()); 8 9 vector<int>::iterator its = s.begin(); 10 int index = 0; 11 for (int &x : g) { 12 while (index < s.size() && s[index] < x) 13 index++; 14 if (index == s.size()) 15 break; 16 else { 17 index++; 18 nums++; 19 } 20 } 21 22 return nums; 23 24 } 25 };
以上是关于LeetCode题解之 Assign Cookies的主要内容,如果未能解决你的问题,请参考以下文章