当前位置:   article > 正文

力扣(leetcode)1431. Kids With the Greatest Number of Candies_力扣1431js

力扣1431js

思路就是先跑一遍找到拥有最多的糖果有多少,再跑一遍看每个人加上额外糖果后能否超过最多的那个人的糖果.

C语言

/**
 * Note: The returned array must be malloced, assume caller calls free().
 */
bool* kidsWithCandies(int* candies, int candiesSize, int extraCandies, int* returnSize){
    bool *r=(bool*)malloc(sizeof(bool)*candiesSize);
    int max=0;
    for(int i=0;i<candiesSize;i++)
        if(max<candies[i])
            max=candies[i];
    for(int i=0;i<candiesSize;i++){
        if(candies[i]+extraCandies>=max)
            r[i]=true;
        else
            r[i]=false;
    }
    *returnSize=candiesSize;
    return r;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

JAVA

class Solution {
    public List<Boolean> kidsWithCandies(int[] candies, int extraCandies) {
            List<Boolean> r=new ArrayList<>();
            int max=0;
            for(int i=0;i<candies.length;i++)
                if(max<candies[i])
                    max=candies[i];
            for(int i=0;i<candies.length;i++)
                r.add(candies[i]+extraCandies>=max);
        return r;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/502541
推荐阅读
相关标签
  

闽ICP备14008679号