Presentation is loading. Please wait.

Presentation is loading. Please wait.

0 Introduction to asymptotic complexity Search algorithms You are responsible for: Weiss, chapter 5, as follows: 5.1 What is algorithmic analysis? 5.2.

Similar presentations


Presentation on theme: "0 Introduction to asymptotic complexity Search algorithms You are responsible for: Weiss, chapter 5, as follows: 5.1 What is algorithmic analysis? 5.2."— Presentation transcript:

1 0 Introduction to asymptotic complexity Search algorithms You are responsible for: Weiss, chapter 5, as follows: 5.1 What is algorithmic analysis? 5.2 Examples of running time 5.3 NO, not responsible for this No. 5.4 Definition of Big-oh and Big-theta. 5.5 Everything except harmonic numbers. This includes the repeated doubling and repeated having stuff. 5.6. No, not responsible, No. Instead, you should know the following algorithms as presented in the handout on correctness of algorithms and elsewhere and be able to determine their worst-case order of execution time: linear search, finding the min, binary search, partition, insertion sort, selection sort, merge sort, quick sort. 5.7 Checking an algorithm analysis. 5.8 Limitations of big-oh analysis

2 1 Organization Searching in arrays –Linear search –Binary search Asymptotic complexity of algorithms

3 2 /** = index of first occ. of v in b (b.length is v not in b) */ public static boolean linearSearch(Comparable[] a, Object v) { int i = 0; // invariant: v is not in b[0..i-1] while (i < a.length) { if (a[i].compareTo(v) == 0) return true; i= i+1; } return false; } 7 4 6 19 3 7 8 10 32 54 67 98 Linear search:

4 3 /**b is sorted. Return a value k such that b[0..k] ≤ v < b[k+1..] */ public static boolean binarySearch(Comparable[] b, Object v) { int k= -1; int j= b.length; // invariant: b[0..k] ≤ v < b[j..]; while (j != k+1) { int e= (k+j)/ 2; // { -1 <= k < e < j <= b.length } if (b[k].compareTo(v) <= 0) k= e; else j= e; } return k; } binary search: v 0 k e j Each iteration performs one comparison and cuts b[k+1..j-1] is half

5 4 Comparison of linear and binary search binary search runs much faster than linear search. Stating this precisely can be quite subtle. One approach: asymptotic complexity of programs –big-O notation Two steps: –Compute running time of program –Running time  asymptotic running time Asymptotic running time gives you a formula that tells you something about the running time on LARGE arrays.

6 5 Running time of algorithms In general, running time of a program such as linear search depends on many factors: 1.machine on which program is executed laptop vs. supercomputer 2.size of input (array A ) big array vs. small array 3.values of input v is first element in array vs. v is not in array To talk precisely about running times of programs, we must specify all three factors above.

7 6 Defining running time of programs 1.Machine on which programs are executed. –Random-access Memory (RAM) model of computing Measure of running time: number of operations executed –Other models used in CS: Turing machine, Parallel RAM model, … –Simplified RAM model for now: Each data comparison is one operation. All other operations are free. Evaluate searching/sorting algorithms by estimating number of comparisons they make It can be shown that for searching and sorting algorithms, total number of operations executed on RAM model is proportional to number of data comparisons executed.

8 7 Defining running time (contd.) 2.Dependence on size of input –Rather than compute a single number, we compute a function from problem size to number of comparisons. (e.g.) f(n) = 32n 2 – 2n + 23 where is problem size –Each program has its own measure of problem size. –For searching/sorting, natural measure is size of array being searched/sorted.

9 8 Define running time (contd.) 3.Dependence of running time on input values Consider set I n of possible inputs of size n. Find number of comparisons for each possible input in this set. Compute Average: harder to compute Worst-case: easier to compute We will use worst-case complexity. ([3,6], 2) ([3,6], 3) ([-4,5], -9) ……. Possible inputs of size 2 for linear/binary search

10 9 7 4 6 19 3 7 8 10 32 54 67 98 Linear search: -2068911 13 223445 56 78 Binary search: sorted array of size n Computing running times Assume array is of size n. Worst-case number of comparisons: v is not in array. Number of comparisons = n. Running time of linear search: T L (n) = n Worst-case number of comparisons: v is not in array. T B (n) = log 2 (n) + 1

11 10 Base-2 logarithms If n = 2**k, then k is called the logarithm (to the base 2) of n If n is a power of 2, then log(n) is number of 0’s following the 1. k 0 1 2 3 4 5 6 15 2**k 1 2 4 8 16 32 64 32768 log(2**k) 0 1 2 3 4 5 6 15 binary rep of 2**k 00000000000000001 00000000000000010 00000000000000100 00000000000001000 00000000000010000 00000000000100000 00000000001000000 01000000000000000

12 11 Running time  Asymptotic running time + 1 Linear search: T L (n) = n Binary search: T B (n) = log 2 (n) We are really interested in comparing running times only for large problem sizes. For small problem sizes, running time is small enough that we may not care which algorithm we use. For large values of n, we can drop the “+1” term and the floor operation, and keep only the leading term, and say that T B (n)  log 2 (n) as n gets larger. Formally, T B (n) = O(log 2 (n)) and T L (n) = O(n)

13 12 Rules for computing asymptotic running time Compute running time as a function of input size. Drop lower order terms. From the term that remains, drop floors/ceilings as well as any constant multipliers. Result: usually something like O(n), O(n 2 ), O(nlog(n)), O(2 n )

14 13 Summary of informal introduction Asymptotic running time of a program 1.Running time: compute worst-case number of operations required to execute program on RAM model as a function of input size. –for searching/sorting algorithms, we will compute only the number of comparisons 2.Running time  asymptotic running time: keep only the leading term(s) in this function.

15 14 Finding the minimum Function min(b, h, k) returns the index of the minimum value of b[h..k]. It performs a linear search, comparing each element of b[h+1..k] to the minimum of the previous segment. To find the minimum of a segment of size n takes n-1 comparisons: O(n). b b[j] is min of these h i k

16 15 Selection sort: O(n**2) running time /** Sort b */ public static void selectionsort(Comparable b[]) { // inv: b[0..k-1] sorted, b[0..k-1] ≤ b[k..] for (int k= 0; k != b.length; k= k+1) { int t= min(b,k,b.length); Swap b[k] and b[t]; k= k+1; } b sorted, = 0 k n k 0 1 2 3 … n-1 # comp. n-1 n-2 n-3 n-4 … 0 (n-1)*n/2 = n**2 - n / 2


Download ppt "0 Introduction to asymptotic complexity Search algorithms You are responsible for: Weiss, chapter 5, as follows: 5.1 What is algorithmic analysis? 5.2."

Similar presentations


Ads by Google