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 .

相关推荐
luckycoding1 分钟前
1487. 保证文件名唯一
数据结构·算法·leetcode
J2虾虾5 分钟前
Springboot项目中循环依赖的问题
java·开发语言
wjs20246 分钟前
C 数组:深度解析与应用场景
开发语言
DeeGLMath6 分钟前
从基础算法到机器学习的研究轨迹
人工智能·算法·机器学习
weixin_704266057 分钟前
事务管理全解析:从ACID到Spring实现
java·数据库·spring
lxh01137 分钟前
记忆函数题解
开发语言·javascript·ecmascript
Barkamin11 分钟前
冒泡排序的简单实现
java·算法·排序算法
_dindong11 分钟前
【单调栈/队列&并查集&字符串哈希&Tire树】习题集锦
数据结构·c++·算法·哈希算法
熙胤20 分钟前
springboot与springcloud对应版本
java·spring boot·spring cloud
独自破碎E20 分钟前
【手撕真题】合并区间
算法