Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
courses:cs211:winter2012:journals:jeanpaul:chaptter2section4 [2012/01/24 01:13] – created mugabej | courses:cs211:winter2012:journals:jeanpaul:chaptter2section4 [2012/01/24 23:11] (current) – mugabej | ||
---|---|---|---|
Line 3: | Line 3: | ||
When analyzing algorithms, | When analyzing algorithms, | ||
+ | |||
+ | |||
+ | =====Linear Time O(n)===== | ||
+ | |||
+ | The running time of these algorithms is at most a constant factor times the size of the input. With these algorithms, the input is typically processed in a single pass, spending a constant amount of time on each item of input enumerated. Examples: | ||
+ | |||
+ | * Computing the Maximum | ||
+ | |||
+ | algorithm: | ||
+ | max = a < | ||
+ | for i = 2 to n: \\ | ||
+ | if a< | ||
+ | set max = a< | ||
+ | Endif \\ | ||
+ | Endfor \\ | ||
+ | |||
+ | Merging Two Sorted lists | ||
+ | |||
+ | algorithm: | ||
+ | |||
+ | To merge sorted lists A = a< | ||
+ | Maintain a //current// pointer into each list, | ||
+ | While both lists are nonempty: | ||
+ | Let a< | ||
+ | | ||
+ | | ||
+ | EndWhile | ||
+ | Once one list is empty, append the remainder of the other list to the output. | ||
+ | |||
+ | | ||
+ | To show that this algorithm spends a constant amount of time on each element: | ||
+ | |||
+ | Suppose the cost of each iteration | ||
+ | An element can be charged only once,since at the moment it is first charged,it is added to the output and never seen by the algorithm.\\ | ||
+ | But there are only 2//n// elements in total and the charge of each iteration is accounted for by a charge of some element\\ | ||
+ | Thus there can be only 2//n// iterations \\ | ||
+ | Each iteration takes a constant amount of time,so the in total, the algorithm takes O(//n//)\\ | ||
+ | |||
+ | |||
+ | =====O(nlogn) Time===== | ||
+ | |||
+ | It's the running time of any algorithm that splits the input into two equal-sized pieces, | ||
+ | |||
+ | =====Quadratic Time O(n²)===== | ||
+ | |||
+ | Often times, for problems involving pairs of things. Example: Given //n// points in space, each specified by (x,y), find the pair of points that are closest together. The brute-force algorithm for this problem would enumerate all pairs of points, | ||
+ | |||
+ | Algorithm: | ||
+ | For each other input point (x< | ||
+ | | ||
+ | if d is less than the current minimum, | ||
+ | | ||
+ | | ||
+ | | ||
+ | |||
+ | =====Cubic Time O(n³)===== | ||
+ | |||
+ | |||
+ | Example: Given two sets,find whether some pair of the given sets is disjoint | ||
+ | |||
+ | algorithm: | ||
+ | |||
+ | for each set S< | ||
+ | for each other set S< | ||
+ | for each element //p// of S< | ||
+ | | ||
+ | | ||
+ | if no element of S< | ||
+ | | ||
+ | | ||
+ | | ||
+ | Endfor | ||
+ | |||
+ | =====O(n^k) Time===== | ||
+ | |||
+ | |||
+ | This running time is obtained when we're searching over all subsets of size k. Example: | ||
+ | |||
+ | Algorithm: \\ | ||
+ | |||
+ | for each subset S of k nodes \\ | ||
+ | check whether S constitutes an Independent set \\ | ||
+ | if S is an Independent set then \\ | ||
+ | Stop and declare success \\ | ||
+ | Endif \\ | ||
+ | Endfor \\ | ||
+ | if no k-node independent set was found then \\ | ||
+ | | ||
+ | Endif \\ | ||
+ | |||
+ | |||
+ | =====Beyond Polynomial Time===== | ||
+ | |||
+ | Example: Given a graph, find an Independent set of //maximum// size. \\ | ||
+ | Algorithm: \\ | ||
+ | |||
+ | for each subset S of nodes \\ | ||
+ | check whether S constitutes and independent set \\ | ||
+ | If S is a larger independent set than the largest seen so far, then \\ | ||
+ | | ||
+ | Endif \\ | ||
+ | Endfor \\ | ||
+ | |||
+ | The running time of this brute-force algorithm is O(n²2< | ||
+ | |||
+ | Another example is when we have to find all ways to arrange //n// items in order,where we end up with a running time of //n//!; and the Traveling Salesman Problem.\\ | ||
+ | |||
+ | =====Sublinear Time===== | ||
+ | |||
+ | This running time appear when we have to query the input, the goal being to minimize the amount of querying that must be done.\\ | ||
+ | Example: //binary search//. It's total running time is O(log//n//) as we encounter successive shrinking of the search region.\\ | ||
+ | |||
+ | |||
+ | |||
+ | This section was easy to read, and the material within it were all familiar. I give it a 9/10. |