使用:
\renewcommand{\thealgorithm}{}
比如:
\renewcommand{\thealgorithm}{3.3}
\begin{algorithm}[section]
\caption{NineIM($G$, $embeddings$,$k$)}
\hspace*{0.02in} \textbf{输入:} \\
\hspace*{0.52in} $G(V, E) $: 社交网络结构表示 \\
\hspace*{0.52in} $embeddings$: 节点的嵌入矩阵 \\
\hspace*{0.52in} $k$: 种子集大小\\
\hspace*{0.02in} {\bf 输出:} \\
\hspace*{0.52in} $seeds$: 种子集
\begin{algorithmic}[1]
\State 初始化种子集$seeds$
\State 通过公式3.13计算相关系数
\State 通过公式3.14计算每个节点得分
\State 将所有的得分排序,选择前$k$个节点作为种子集
\State \Return 种子集$seeds$
\end{algorithmic}
\end{algorithm}
效果: