91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++如何實現裝最多水的容器

發布時間:2022-03-28 10:26:43 來源:億速云 閱讀:197 作者:iii 欄目:大數據

本文小編為大家詳細介紹“C++如何實現裝最多水的容器”,內容詳細,步驟清晰,細節處理妥當,希望這篇“C++如何實現裝最多水的容器”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

Container With Most Water 裝最多水的容器

Given n non-negative integers a1a2, ..., an , where each represents a point at coordinate (iai). n vertical lines are drawn such that the two endpoints of line i is at (iai) and (i, 0). Find two lines, which together with x-axis forms a container, such that the container contains the most water.

Note: You may not slant the container and nis at least 2.

C++如何實現裝最多水的容器

The above vertical lines are represented by array [1,8,6,2,5,4,8,3,7]. In this case, the max area of water (blue section) the container can contain is 49.

Example:

Input: [1,8,6,2,5,4,8,3,7]
Output: 49

這道求裝最多水的容器的題和那道 Trapping Rain Water 很類似,但又有些不同,那道題讓求整個能收集雨水的量,這道只是讓求最大的一個的裝水量,而且還有一點不同的是,那道題容器邊緣不能算在里面,而這道題卻可以算,相比較來說還是這道題容易一些,這里需要定義i和j兩個指針分別指向數組的左右兩端,然后兩個指針向中間搜索,每移動一次算一個值和結果比較取較大的,容器裝水量的算法是找出左右兩個邊緣中較小的那個乘以兩邊緣的距離,代碼如下:

C++ 解法一:

class Solution {
public:
    int maxArea(vector<int>& height) {
        int res = 0, i = 0, j = height.size() - 1;
        while (i < j) {
            res = max(res, min(height[i], height[j]) * (j - i));
            height[i] < height[j] ? ++i : --j;
        }
        return res;
    }
};

Java 解法一:

public class Solution {
    public int maxArea(int[] height) {
        int res = 0, i = 0, j = height.length - 1;
        while (i < j) {
            res = Math.max(res, Math.min(height[i], height[j]) * (j - i));
            if (height[i] < height[j]) ++i;
            else --j;
        }
        return res;
    }
}

這里需要注意的是,由于 Java 中的三元運算符 A?B:C 必須須要有返回值,所以只能用 if..else.. 來替換,不知道 Java 對于三元運算符這么嚴格的限制的原因是什么。

下面這種方法是對上面的方法進行了小幅度的優化,對于相同的高度們直接移動i和j就行了,不再進行計算容量了,參見代碼如下:

C++ 解法二:

class Solution {
public:
    int maxArea(vector<int>& height) {
        int res = 0, i = 0, j = height.size() - 1;
        while (i < j) {
            int h = min(height[i], height[j]);
            res = max(res, h * (j - i));
            while (i < j && h == height[i]) ++i;
            while (i < j && h == height[j]) --j;
        }
        return res;
    }
};

Java 解法二:

public class Solution {
    public int maxArea(int[] height) {
        int res = 0, i = 0, j = height.length - 1;
        while (i < j) {
            int h = Math.min(height[i], height[j]);
            res = Math.max(res, h * (j - i));
            while (i < j && h == height[i]) ++i;
            while (i < j && h == height[j]) --j;
        }
        return res;
    }
}

讀到這里,這篇“C++如何實現裝最多水的容器”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

绍兴市| 长子县| 天峻县| 鄂州市| 自贡市| 通江县| 萝北县| 涿鹿县| 托克逊县| 彭山县| 临武县| 临海市| 保山市| 峡江县| 宜宾市| 永和县| 全椒县| 浦北县| 台南县| 集贤县| 莲花县| 长顺县| 得荣县| 澄城县| 隆德县| 道孚县| 唐河县| 余江县| 漳平市| 普兰店市| 阜新市| 巴里| 通渭县| 车险| 定安县| 德江县| 桂东县| 汝阳县| 墨玉县| 铜山县| 九龙县|