Algorithm Template: Difference between revisions
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: | ||
= | =Description= | ||
The name | The name/background/usefulness of the algorithm goes here. | ||
=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= | |||
<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 Techniques= | |||
=Tutorials and Links= | |||
== | =Related problems= | ||
[[ | [[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:
Pseudo Code
if
there is more code
write it here
else
finish editing