CS 401: Computer Algorithm I
Complexity / Graphs
Xiaorui Sun
1
CS 401: Computer Algorithm I Complexity / Graphs Xiaorui Sun 1 - - PowerPoint PPT Presentation
CS 401: Computer Algorithm I Complexity / Graphs Xiaorui Sun 1 Complexity Given two positive functions f and g f(N) is O(g(N)) iff there is a constant c > 0 s.t., f(N) is eventually always c g(N) f(N) is W (g(N)) iff there is a
Xiaorui Sun
1
2
max ¬ a1 for i = 2 to n { if (ai > max) max ¬ ai }
4
i = 1, j = 1 while (both lists are nonempty) { if (ai £ bj) append ai to output list and increment i else(ai > bj)append bj to output list and increment j } append remainder of nonempty list to output list
5
also referred to as linearithmic time
6
min ¬ (x1 - x2)2 + (y1 - y2)2 for i = 1 to n { for j = i+1 to n { d ¬ (xi - xj)2 + (yi - yj)2 if (d < min) min ¬ d } }
see chapter 5
foreach subset S of k nodes { check whether S in an independent set if (S is an independent set) report S is an independent set } }
!! n k æ è ç ö ø ÷ = n (n-1) (n- 2) " (n- k +1) k (k -1) (k - 2) " (2) (1) £ nk k!
poly-time for k=17, but not practical k is a constant
8
S* ¬ f foreach subset S of nodes { check whether S in an independent set if (S is largest independent set seen so far) update S* ¬ S } }
9
10
Suppose we can do 1 million operations per second.
not only get very big, but do so abruptly, which likely yields erratic performance on small instances
Outdated: Nvidia announced a “computer” this Tue that do 2 quadrillion (2×10&.) operations/sec. It brings down the 31,710 years to 500 sec. However, 2&// operations still takes millions of years.
11
V = {1, 2, 3, 4, 5 ,6, 7, 8} E = {(1,2), (1,3), (2,3), (2,4), (2,5), (3,5), (3,7), aaaa(3,8), (4,5), (5,6), (7,8)} m=11, n=8
14
Disconnected graph Isolated vertices Multi edges Self loop
15
16
17
Multi edge self loop
18
19
20
|E|=8 1
%&'(&) *
deg / = 2 + 2 + 1 + 1 + 3 + 2 + 3 + 2 = 16
21
4 odd degree vertices 3, 4, 5, 6
.
. edges.
22
23
&' &3 &4 &5 &6
24