示例:
\documentclass[11pt,twoside,a4paper]{article}
\usepackage{algorithm}
\usepackage{algorithmicx}
\usepackage{algpseudocode}
\usepackage{amsmath}
\usepackage[top=2cm, bottom=2cm, left=2cm, right=2cm]{geometry}
\begin{document}
%% 写算法伪代码或者流程的前期准备
\renewcommand{\algorithmicrequire}{\textbf{Input:}} % Use Input in the format of Algorithm
\renewcommand{\algorithmicensure}{\textbf{Output:}} % Use Output in the format of Algorithm
\begin{algorithm}[h]
\caption{Pseudocode of Simulated Annealing Algorithm} % 名称
\begin{algorithmic}[1]
\Require
$x_0$: initial individual or state;
$T_0$: a high enough initial temperature;
$T_{min}$: the lowest limit of temperature;
\Ensure
optimal state or approximate optimal state;
\State set $x_0 = x_{best}$, compute initial energy function $E(x_0)$;
\While {$T > T_{min}$}
\For{$i = 1$; $i<n$; $i++$ }
\State perturb current state $x_i$ for a new state $x_{new}$ and compute energy function $E(x_{new})$;
\State compute $\Delta$ = $E(x_{new}-E(x_{(i)})$;
\If {$\Delta$$E<0$} \State $x_{best} = x_{new}$
\Else \State the probability $P = exp(-dE/T_{(i)})$;
\If {$rand(0,1) < P$ }\State $x_{best} = x_{new}$
\Else \State $x_{best} = x_{best}$
\EndIf
\EndIf
\EndFor
\State $T = T * $ $ \alpha$, where $\alpha$ is decay factor ;
\EndWhile
\end{algorithmic}
\end{algorithm}
\end{document}
效果:
代码分析:
\documentclass[11pt,twoside,a4paper]{article} //
- 加载宏包:
\usepackage{algorithm}
\usepackage{algorithmicx}
\usepackage{algpseudocode}
\usepackage{amsmath}
\usepackage[top=2cm, bottom=2cm, left=2cm, right=2cm]{geometry}
- 文档开始结束标志
\begin{document}
在begin和end中间插入代码
\end{document}
- 写算法伪代码之前的准备
\renewcommand{\algorithmicrequire}{\textbf{Input:}} % Use Input in the format of Algorithm
\renewcommand{\algorithmicensure}{\textbf{Output:}} % Use Output in the format of Algorithm
- 算法开始和结束标志:
\begin{algorithm}[h]
在中间插入算法的代码。
\end{algorithm}
版权声明:本文为qq_37043563原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。