V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
dhnUphp
V2EX  ›  程序员

写伪代码时,有没有用到 let in 这种结构的。这是什么关系啊。

  •  
  •   dhnUphp · 2014-05-20 17:39:35 +08:00 · 2501 次点击
    这是一个创建于 3638 天前的主题,其中的信息可能已经有所发展或是发生改变。
    2 条回复    2014-05-21 09:19:50 +08:00
    davidli
        1
    davidli  
       2014-05-20 19:03:40 +08:00
    给个例子吧。
    我猜了两种。
    1) list.append(element)
    2) if element in list: ...
    dhnUphp
        2
    dhnUphp  
    OP
       2014-05-21 09:19:50 +08:00
    Pseudo Code 11.10.
    1 function reachabilityAndRadius(G = (V; E); s) =
    2 let
    3 % requires: X = fu 2 V j G(s; u) < ig ^
    4 F = fu 2 V j G(s; u) = ig
    5 % returns: (RG(s); maxf G(s; u) : u 2 RG(s)g)
    6 function BFS(X; F; i) =
    7 if jFj = 0 then (X; i)
    8 else
    9 let
    10 X0 = X [ F ( Visit the Frontier )
    11 N = NG(F) ( Determine the neighbors of the frontier )
    12 F
    0 = N n X0
    ( Remove vertices that have been visited )
    13 in BFS(X0
    ; F0
    ; i + 1) end ( Next level )
    14 in BFS(fg; fsg; 0) end
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1521 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 16:42 · PVG 00:42 · LAX 09:42 · JFK 12:42
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.