会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
奔跑的蜗牛
简单之至则为雅致 算法+数据结构=程序
博客园
首页
新随笔
联系
订阅
管理
2014年8月5日
面试题:给定数组a,找到最大的j-i, 使a[j]>a[i]
摘要: 第一种方法: 用两重循环对每对点都试一下,然后取最大值即可,时间复杂度为O(n2)#include #include using namespace std;int maxIndexDiff(int a[],int n){ int maxDiff = -1; for(int i = 0...
阅读全文
posted @ 2014-08-05 23:20 OpenSoucre
阅读(1993)
评论(0)
推荐(0)
编辑
公告