• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

xxxqqq

  • 博客园
  • 联系
  • 订阅
  • 管理

View Post

Triangle Count

Given an array of integers, how many three numbers can be found in the array, so that we can build an triangle whose three edges length is the three numbers that we find?

Example

Given array S = [3,4,6,7], return 3. They are:

[3,4,6]
[3,6,7]
[4,6,7]

Given array S = [4,4,4,4], return 4. They are:

[4(1),4(2),4(3)]
[4(1),4(2),4(4)]
[4(1),4(3),4(4)]
[4(2),4(3),4(4)]


先sort 然后对于每一个元素i 利用左右双index扫面0到i-1 找出符合条件的元素对

 1 public class Solution {
 2     /**
 3      * @param S: A list of integers
 4      * @return: An integer
 5      */
 6     public int triangleCount(int S[]) {
 7         Arrays.sort(S);
 8         int count = 0;
 9         for (int i = 0; i < S.length; i++) {
10             int left = 0;
11             int right = i - 1;
12             while (left < right) {
13                 if (S[left] + S[right] > S[i]) {
14                     // The edge from S[left] to S[right - 1] will also form a triangle
15                     count += right - left;
16                     right--;
17                 } else {
18                     left++;
19                 }
20             }
21         }
22         return count;
23     }
24 }

 

posted on 2017-05-10 15:29  xxxqqq  阅读(267)  评论(0)    收藏  举报

刷新页面返回顶部
 
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3