Data Structures and Programming Methodology CS61

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 && array[i] == array[j]) {
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 .

相关推荐
fashion 道格1 天前
用 C 语言玩转归并排序:递归实现的深度解析
数据结构·算法·排序算法
sanggou1 天前
大数据量查询处理方案 - 内存优化与高效展示
java
没有bug.的程序员1 天前
Java 字节码:看懂 JVM 的“机器语言“
java·jvm·python·spring·微服务
-大头.1 天前
深入理解 Java 内存区域与 JVM 运行机制
java·jvm
没有bug.的程序员1 天前
JVM 整体架构:一套虚拟机的心脏与血管
java·jvm·spring boot·spring cloud·架构
晨枫阳1 天前
不同语言的元组对比
java·前端·javascript
悟能不能悟1 天前
怎么在idea合并2个个branch
java·ide·intellij-idea
这人很懒没留下什么1 天前
SpringBoot2.7.4整合Oauth2
开发语言·lua
ZHOUZAIHUI1 天前
WSL(Ubuntu24.04) 安装PostgreSQL
开发语言·后端·scala
九年义务漏网鲨鱼1 天前
蓝桥杯算法——状态压缩DP
算法·职场和发展·蓝桥杯