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 .

相关推荐
李宥小哥6 分钟前
SQLite04-表数据管理
java·jvm·数据库
李宥小哥6 分钟前
SQLite05-常用函数
java·开发语言·jvm
huohuopro6 分钟前
idea配置servlet项目
java·servlet·intellij-idea
皮卡狮8 分钟前
C++面向对象编程的三大核心特性之一:多态
开发语言·c++
zzb15809 分钟前
Agent学习-ReAct框架
java·人工智能·python·机器学习·ai
zhangx1234_10 分钟前
java list介绍
java·开发语言·list
Java面试题总结10 分钟前
Go运行时系统解析: runtime包深度指南
开发语言·后端·golang
Hello.Reader11 分钟前
深入浅出 Adam 优化算法从直觉到公式
深度学习·算法
识君啊11 分钟前
拆分与合并的艺术·分治思想:Java归并排序深度解析
java·数据结构·算法·排序算法·归并排序·分治
左左右右左右摇晃13 分钟前
Java Object 类笔记
java·笔记