码迷,mamicode.com
首页 > 其他好文 > 详细

程序员面试金典-面试题 16.11. 跳水板

时间:2020-03-15 15:01:40      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:col   ret   code   new   ++   res   两种   面试   方法   

题目:

你正在使用一堆木板建造跳水板。有两种类型的木板,其中长度较短的木板长度为shorter,长度较长的木板长度为longer。你必须正好使用k块木板。编写一个方法,生成跳水板所有可能的长度。

返回的长度需要从小到大排列。

示例:

输入:
shorter = 1
longer = 2
k = 3
输出: {3,4,5,6}

分析:

简单的数学题,i从0到k生成的长度为

(k - i) * shorter + i * longer;

程序:

class Solution {
    public int[] divingBoard(int shorter, int longer, int k) {
        if(k == 0)
            return new int[]{};
        if(shorter == longer)
            return new int[]{shorter * k};
        int[] res = new int[k+1];
        for(int i = 0; i < k+1; ++i){
            res[i] = (k - i) * shorter + i * longer;
        }
        return res;
    }
}

 

程序员面试金典-面试题 16.11. 跳水板

标签:col   ret   code   new   ++   res   两种   面试   方法   

原文地址:https://www.cnblogs.com/silentteller/p/12497543.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!