首页 > TAG信息列表 > curHeight

LeetCode 0011 Container With Most Water

原题传送门 1. 题目描述 2. Solution 1 1、思路分析 分析: 问题等价于,有底木桶能装多少水? 双指针: left, right 分别从两边往中间靠近 容积计算: width = right - left; curHeight = min(height[left], height[right]); 短板原则 volume = width * curHeight 指针移动原则: 短板

短视频平台搭建,实现banner自动滑动展示效果

短视频平台搭建,实现banner自动滑动展示效果的相关代码 @override  Widget build(BuildContext _buildContext) {    int banLen = _banner.length;    double width = ViewUtils.getScreenWidth(_buildContext);    double curWidth = width * 0.92;    double curHeight