Algorithm Template: Difference between revisions

From programming_contest
Jump to navigation Jump to search
imported>Al171
imported>Kmk21
m 5 revisions imported
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==Name of the Algorithm==
=Description=
The name goes here.
The name/background/usefulness of the algorithm goes here.
==Description==
=Running Time=
Give a breif description of the algorithm.
==Running Time==
Average & worst case running time of the algorithm.
Average & worst case running time of the algorithm.


Line 9: Line 7:


<math>2x \times 4y \div 6z + 8 - \frac {y}{z^2} = 0</math>
<math>2x \times 4y \div 6z + 8 - \frac {y}{z^2} = 0</math>
 
=Pseudo Code=
==Pseudo Code==
<syntaxhighlight lang="cpp">
   if
   if
     there is more code
     there is more code
Line 16: Line 14:
   else
   else
     finish editing
     finish editing
</syntaxhighlight>
=Implementations=
==C++==


==Related problems==
=Related Techniques=
Question F in [[Midatl2011]]
=Tutorials and Links=
==Links==
=Related problems=
[[Algorithms]]
[[midatl2014a]]

Latest revision as of 19:03, 31 January 2015

Description

The name/background/usefulness of the algorithm goes here.

Running Time

Average & worst case running time of the algorithm.

Tex syntax for mathematical formatting is being used here:

2x×4y÷6z+8yz2=0

Pseudo Code

  if
    there is more code
      write it here
  else
    finish editing

Implementations

C++

Related Techniques

Tutorials and Links

Related problems

midatl2014a