1 Asymptotics
(a) We have a function findMax that iterates through an unsorted int array once and returns the
maximum element found in that array. Give the tightest lower (Ω( · )) and upper bounds ( O ( · )) of
findMax in terms of N , the length of the array. Is it possible to define a Θ( · ) bound for findMax ?
(b) Give the worst case and best case runtime in terms of M and N . Assume ping is in Θ(1) and returns
an int .
1
for ( int i = N; i > 0; i--) {
2
for ( int j = 0; j <= M; j++) {
3
if (ping(i, j) > 64) break ;
4
}
5
}
(c) Below we have a function that returns true if every int has a duplicate in the array, and false if there
is any unique int in the array. Assume sort(array) is in Θ( N log N ) and returns array sorted.
1
public static boolean noUniques( int \[\] array) {
2
array = sort(array);
3
int N = array.length;
4
for ( int i = 0; i < N; i += 1) {
5
boolean hasDuplicate = false ;
6
for ( int j = 0; j < N; j += 1) {
7
if (i != j && arrayi == arrayj) {
8
hasDuplicate = true ;
9
}
10
}
11
if (!hasDuplicate) return false ;
12
}
13
return true ;
14
}
Give the worst case and best case runtime in Θ( · ) notation, where N = array.length .
Data Structures and Programming Methodology CS61
jia V iuww5202024-07-09 8:32
相关推荐
晴天的雨.9922 分钟前
类和对象下(内部类,匿名对象,对象拷贝时的编译器优化)其实防守也摸鱼6 分钟前
智能体推荐:精选 AI Agent 工具与实战指南SimonKing6 分钟前
开源神器 Navop:数据库+SSH+终端+AI,一个应用全搞定always_TT6 分钟前
【Python 字符串格式化:format() 方法】爱码猿10 分钟前
SpringBoot+MybatisPlus动态数据源小义_11 分钟前
JDK 深度解析旖旎夜光21 分钟前
LeetCode 238:除自身以外数组的乘积(前缀和) —— 题解智购科技自动售货机工厂25 分钟前
2026自动售货机异常重启根因分析:从日志挖掘到内存取证的技术实践~YH一条大祥脚28 分钟前
26杭电暑期第八场(后半)快读|快写|tarjan|路径DP|mex转化|扫描线|前缀和|二分图奈斯先生Vector31 分钟前
从“能调用”到“可运营”:AI Agent 进入多模型时代后的架构升级