forked from TheAlgorithms/Python
- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeak.py
54 lines (44 loc) · 1.22 KB
/
peak.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"""
Finding the peak of a unimodal list using divide and conquer.
A unimodal array is defined as follows: array is increasing up to index p,
then decreasing afterwards. (for p >= 1)
An obvious solution can be performed in O(n),
to find the maximum of the array.
(From Kleinberg and Tardos. Algorithm Design.
Addison Wesley 2006: Chapter 5 Solved Exercise 1)
"""
from __future__ importannotations
defpeak(lst: list[int]) ->int:
"""
Return the peak value of `lst`.
>>> peak([1, 2, 3, 4, 5, 4, 3, 2, 1])
5
>>> peak([1, 10, 9, 8, 7, 6, 5, 4])
10
>>> peak([1, 9, 8, 7])
9
>>> peak([1, 2, 3, 4, 5, 6, 7, 0])
7
>>> peak([1, 2, 3, 4, 3, 2, 1, 0, -1, -2])
4
"""
# middle index
m=len(lst) //2
# choose the middle 3 elements
three=lst[m-1 : m+2]
# if middle element is peak
ifthree[1] >three[0] andthree[1] >three[2]:
returnthree[1]
# if increasing, recurse on right
elifthree[0] <three[2]:
iflen(lst[:m]) ==2:
m-=1
returnpeak(lst[m:])
# decreasing
else:
iflen(lst[:m]) ==2:
m+=1
returnpeak(lst[:m])
if__name__=="__main__":
importdoctest
doctest.testmod()