Leetcode—611. 有效三角形的个数【中等】
2024每日刷题(209)
Leetcode—611. 有效三角形的个数
C++实现代码
class Solution {
public:
int triangleNumber(vector<int>& nums) {
int len = nums.size();
if(len < 3) {
return 0;
}
int ans = 0;
ranges::sort(nums);
int k = len - 1;
for(; k >= 2; k--) {
int i = 0;
int j = k - 1;
while(i < j) {
if(nums[i] + nums[j] > nums[k]) {
ans += j - i;
j--;
} else {
i++;
}
}
}
return ans;
}
};
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!
原文地址:https://blog.csdn.net/qq_44631615/article/details/144322050
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!