原本没有思路,参考了网上的解题思路,自己独立完成了代码。

int poorPigs(int buckets, int minutesToDie, int minutesToTest) {
    double times = minutesToTest / minutesToDie + 1;
    double i = 0;
    while (pow(times, i) < buckets)
    {
        i++;
    }
    return i;
}

 

posted on 2018-09-25 19:28  Sempron2800+  阅读(81)  评论(0编辑  收藏  举报