【发布时间】:2018-01-19 16:59:32
【问题描述】:
我正在尝试实施amazon 面试问题。
Find the maximum sum of lengths of non-overlapping contiguous subarrays with k as the maximum element. Ex: Array: {2,1,4,9,2,3,8,3,4} and k = 4 Ans: 5 {2,1,4} => Length = 3 {3,4} => Length = 2 So, 3 + 2 = 5 is the answer
我有实现程序:
#include <iostream>
using namespace std;
int main()
{
int a[] = {2,1,4,9,2,3,8,3,4,2};
int cnt = 0, i = 0, j = 0, ele, k = 4;
int tmp = 0, flag = 0;
ele = sizeof(a)/sizeof(a[0]);
for(j = 0; j < ele; )
{
i = j;
//while( i < ele && a[i++] <= k) //It's working fine
while(a[i] <= k && i++ < ele) // It's not work
{
cnt++;
cout<<"while"<<endl;
}
while(j < i)
{
if(a[j++] == k)
{
flag = 1;
}
}
if(flag == 1)
{
tmp += cnt;
flag = 0;
}
cnt = 0;
j = i;
}
cout<<"count : "<<tmp<<endl;
return 0;
}
在我的程序中,我使用了
while( i < ele && a[i++] <= k)
它工作正常并提供正确的输出。
但是,如果我使用
while(a[i] <= k && i++ < ele)
然后我的程序卡住了。为什么?
【问题讨论】:
-
[OT]:你可以像that这样简化你的代码
标签: c++ arrays post-increment