码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode] A Distance Maximizing Problem

时间:2015-01-19 11:04:11      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:leetcode

Question:

Given an array A of integers, find the maximum of j-i subjected to the constraint of A[i] < A[j].


// O(n)
public int maxDistance(int[] A)
{
    // Assumptions...
    
    int local = Integer.MIN_VALUE;
    int global = Integer.MIN_VALUE;
    
    for (int i = 1 ; i < A.length ; i ++)
    {
        if (A[i] > A[i - 1])
        {
            local += 1;
        }
        else
        {
            local = 0;
        }
        global = Math.max(global, local);
    }
    
    return global;
}


[LeetCode] A Distance Maximizing Problem

标签:leetcode

原文地址:http://7371901.blog.51cto.com/7361901/1605509

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!