queue
queue
cs2wzh
这个作者很懒,什么都没留下…
展开
-
[621] 任务调度器
/* * @lc app=leetcode.cn id=621 lang=cpp * * [621] 任务调度器 */ // @lc code=start #include <vector> bool cmp(int a, int b){ return a > b; } class Solution { public: int leastInterval(vector<char>& tasks, int n) { int原创 2020-08-26 20:45:41 · 121 阅读 · 0 评论 -
[859] 亲密字符串
/* * @lc app=leetcode.cn id=859 lang=cpp * * [859] 亲密字符串 */ // @lc code=start class Solution { public: bool buddyStrings(string A, string B) { if(A.size() != B.size()) return false; int n = A.size(); int index =原创 2020-08-26 21:44:25 · 317 阅读 · 0 评论 -
[860] 柠檬水找零
/* * @lc app=leetcode.cn id=860 lang=cpp * * [860] 柠檬水找零 */ // @lc code=start class Solution { public: bool lemonadeChange(vector<int>& bills) { int five = 0, ten = 0; for(int it : bills) { if(it == 5)原创 2020-08-27 15:16:05 · 138 阅读 · 0 评论