Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
courses:cs211:winter2012:journals:jeanpaul:chaptter2section4 [2012/01/24 02:14] – mugabej | courses:cs211:winter2012:journals:jeanpaul:chaptter2section4 [2012/01/24 23:11] (current) – mugabej | ||
---|---|---|---|
Line 11: | Line 11: | ||
* Computing the Maximum | * Computing the Maximum | ||
- | algorithm max = a< | + | algorithm: |
- | for i = 2 to n: | + | |
- | | + | for i = 2 to n: |
- | set max = a< | + | if a< |
- | | + | set max = a< |
- | Endfor | + | Endif |
- | + | Endfor | |
- | * Merging Two Sorted lists | + | |
- | algorithm: | + | Merging Two Sorted lists |
+ | |||
+ | algorithm: | ||
To merge sorted lists A = a< | To merge sorted lists A = a< | ||
Line 41: | Line 42: | ||
- | * O(nlogn) Time | + | =====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===== | ||
- | It's the running time of any algorithm that splits | + | 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 | ||
- | | ||
- | | ||
- | | ||
+ | This section was easy to read, and the material within it were all familiar. I give it a 9/10. |