我需要帮助以 Math SE 可以接受的方式格式化此算法

我需要帮助以 Math SE 可以接受的方式格式化此算法

我有以下算法,想在 Math SE 上问一个问题。我会发布一张图片和一次尝试,但很想知道哪种 Latex 案例可行。生成算法的代码不起作用。

 function KP-O-APPROXIMATE(n,c,W,V)
    Initialize L as a list of n numbers
    for i from 1 to n do 
        l_i <- 0
    end for
    repeat
       x <- 0 ; d <- 0 ;
       for i from 1 to n do 
          if l_i = 0 and w_i <= c_i then
              if v_i/w_i > d then
                   x <- 1; d <- (v_i / w_i)
              end if
          end if
        end for
        if x=\0 then 
             l_x <- 1; c <- c - w_x
        end if
    until x=0
    return L
 end function

这是算法的图片

在此处输入图片描述

相关内容