C语言:盛水容器

https://leetcode-cn.com/problems/container-with-most-water/solution/sheng-zui-duo-shui-de-rong-qi-by-leetcode/
具体题目和例子在链接当中

这个双指针方法实际上就是贪心算法,唯一要注意的就是如何移动指针,题目中给出容器实际上就是“长乘宽”,木桶装水的多少是由最短的一块木板决定的。同样根据贪心算法基本原则,我们每次移动肯定期望装水的容量加大,或者说容量加大的可能性最大。那么我们需要移动两板之中数值最小的一块,以期望获取更大的值。

#include
int a[9]={1,8,6,2,5,4,8,3,7};
int al=9;
int min(int a,int b){
if(a>=b)
return b;
else
return a;
}
void main(){
int head=0,rear=al-1;
int max=min(a[head],a[rear])(rear-head);
while(head if(a[head] head++;
else
rear–;
int max1=min(a[head],a[rear])
(rear-head);
if(max1>max)
max=max1;
}
printf("%d",max);
}

你可能感兴趣的:(练习)