Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
courses:cs211:winter2012:journals:jeanpaul:chaptter2section4 [2012/01/24 03:06] mugabejcourses: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 <sub>1</sub>  \\ +algorithm: 
 +          max = a <sub>1</sub>  \\ 
           for i = 2 to n:  \\            for i = 2 to n:  \\ 
-               if a<sub> i</sub> is greater than max then  \\  +              if a<sub> i</sub> is greater than max then  \\  
-                      set max = a<sub> i</sub>  \\  +                    set max = a<sub> i</sub>  \\  
-               Endif  \\ +              Endif  \\ 
           Endfor \\            Endfor \\ 
-           
-  * Merging Two Sorted lists 
  
- algorithm: +Merging Two Sorted lists 
 + 
 +algorithm: 
  
     To merge sorted lists A = a<sub>1</sub>,a<sub>2</sub>,a<sub>3</sub>,...,a<sub>n</sub> and B = b<sub>1</sub>,b<sub>2</sub>,b<sub>3</sub>,...,b<sub>n</sub>:     To merge sorted lists A = a<sub>1</sub>,a<sub>2</sub>,a<sub>3</sub>,...,a<sub>n</sub> and B = b<sub>1</sub>,b<sub>2</sub>,b<sub>3</sub>,...,b<sub>n</sub>:
Line 64: Line 65:
 algorithm:\\ algorithm:\\
  
-for each set S<sub>i</sub>  \\ + for each set S<sub>i</sub>  \\ 
     for each other set S<sub>j</sub> \\      for each other set S<sub>j</sub> \\ 
        for each element //p// of S<sub>i</sub>  \\         for each element //p// of S<sub>i</sub>  \\ 
Line 73: Line 74:
        Endif  \\        Endif  \\
      Endfor \\      Endfor \\
- Endfor  \\+  Endfor  \\
  
 =====O(n^k) Time=====      =====O(n^k) Time=====     
Line 82: Line 83:
 Algorithm: \\ Algorithm: \\
  
-for each subset S of k nodes \\  +  for each subset S of k nodes \\  
-    check whether S constitutes an Independent set \\  +      check whether S constitutes an Independent set \\  
-    if S is an Independent set then \\  +      if S is an Independent set then \\  
-       Stop and declare success \\  +         Stop and declare success \\  
-    Endif \\ +      Endif \\ 
-Endfor \\ +  Endfor \\ 
-if no k-node independent set was found then  \\ +  if no k-node independent set was found then  \\ 
-   Declare failure \\ +     Declare failure \\ 
-Endif \\             +  Endif \\             
  
  
Line 98: Line 99:
 Algorithm: \\ Algorithm: \\
  
-for each subset S of nodes \\  +  for each subset S of nodes \\  
-    check whether S constitutes and independent set \\ +     check whether S constitutes and independent set \\ 
-    If S is a larger independent set than the largest seen so far, then \\ +     If S is a larger independent set than the largest seen so far, then \\ 
          Record the size of S as the current maximum \\           Record the size of S as the current maximum \\ 
-    Endif \\  +     Endif \\  
-Endfor \\ +  Endfor \\ 
  
 The running time of this brute-force algorithm is O(n²2<sup>n</sup>).\\ The running time of this brute-force algorithm is O(n²2<sup>n</sup>).\\
Line 116: Line 117:
  
  
- +This section was easy to read, and the material within it were all familiar. I give it a 9/10.
- +
courses/cs211/winter2012/journals/jeanpaul/chaptter2section4.1327374419.txt.gz · Last modified: 2012/01/24 03:06 by mugabej
CC Attribution-Noncommercial-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0