首页 > 代码库 > 求整数序列最大面积
求整数序列最大面积
#include <stdio.h>#define N 4int fun(int *arr){ int i,j; int x,y; int temp; int a[N]; for(j = 0; j < N; j++) { x = j; y = j; for(i = 0; i< x; i++) { if(x > 0) { if(arr[j]<arr[x-1]) x--; else break; } } for(i = y; i< N; i++) { if(y < N) { if(arr[j]<arr[y+1]) y++; else break; } } a[j] = (y-x+1)*arr[j]; } temp = a[0]; for(j = 0; j < N; j++) { if(a[j]>temp) temp = a[j]; } return temp;}int main(){ //int arr[N] = {2,1,5,6,2,3}; //int arr[N] = {1,2,3,4,5,6}; int arr[N] = {4,0,1,1}; int w = fun(arr); printf("%d\n", w);
return 0;}
求整数序列最大面积
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。