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:37] – 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: | + | algorithm: |
+ | | ||
for i = 2 to n: \\ | for i = 2 to n: \\ | ||
- | if a< | + | |
- | set max = a< | + | set max = a< |
- | | + | Endif \\ |
Endfor \\ | Endfor \\ | ||
- | | ||
- | * Merging Two Sorted lists | ||
- | algorithm: | + | Merging Two Sorted lists |
+ | |||
+ | algorithm: | ||
To merge sorted lists A = a< | To merge sorted lists A = a< | ||
Line 43: | Line 44: | ||
=====O(nlogn) Time===== | =====O(nlogn) Time===== | ||
- | It's the running time of any algorithm that splits the input into two equal-sized pieces, | + | It's the running time of any algorithm that splits the input into two equal-sized pieces, |
=====Quadratic Time O(n²)===== | =====Quadratic Time O(n²)===== | ||
Line 57: | Line 58: | ||
| | ||
- | | + | =====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 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. |