Algorithm Template: Difference between revisions
Jump to navigation
Jump to search
imported>Al171 Created page with "==Name of the Algorithm== The name goes here. ==Description== Give a breif description of the algorithm. ==Running Time== Average & worst case running time. <math>2x \times 4y..." |
imported>Kmk21 m 5 revisions imported |
||
(4 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. | Tex syntax for mathematical formatting is being used here: | ||
<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 12: | 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