【数组-双指针】Container With Most Wate
2018-07-24 本文已影响0人
安琪拉的小迷妹
题目链接
https://leetcode.com/problems/container-with-most-water/description/
思路:left和right指针逼近
开始是判断,比较left+1和right-1之后面积的大小,往面积大的方向移动,这样会报错。
其实只要直接比较left和right的大小就行了,移动小的那个
错误代码
正确代码
题目链接
https://leetcode.com/problems/container-with-most-water/description/
思路:left和right指针逼近
开始是判断,比较left+1和right-1之后面积的大小,往面积大的方向移动,这样会报错。
其实只要直接比较left和right的大小就行了,移动小的那个
错误代码
正确代码