Erlang翻译Go walk trees

huangapple go评论76阅读模式
英文:

Erlang translation of Go walk trees

问题

我正在尝试将Go语言中的Walk函数(这里)实现为Erlang语言。

以下是翻译好的代码:

-module(tree).
-export([walk/1,test/0]).

walk({Left, Value, Right}) ->
    spawn(tree,walk,[Left]),
    io:format(Value),
    spawn(tree,walk,[Right]);
walk({}) -> continue.

test() ->
    B = {{}, alina, {}},
    D = {{}, vlad, {}},
    C = {D, tea, {}},
    A = {B, maria, C},
    walk(A).

我不确定这是否属于代码审查部分,因为我不确定我所做的是否符合我的意图。代码按预期工作(即遍历树),但我不确定函数的设计是否是并发的。

英文:

I am trying to implement the Walk function from here which is implemented in Go into erlang.

Here is the result:

-module(tree).
-export([walk/1,test/0]).


walk({Left, Value, Right}) ->
	spawn(tree,walk,[Left]),
	io:format(Value),
	spawn(tree,walk,[Right]);
walk({}) -> continue.



test() ->
B = {{}, alina, {}},
D = {{},vlad,{}},
C = {D, tea, {}},
A = {B,maria,C},
walk(A).

I'm not sure if this belongs to the code review section as I'm not sure that what I did is what I wanted. The code works as expected (in the sense that it does walk a tree) however I'm not sure if the design of the function is concurrent.

答案1

得分: 1

该函数确实是并发的,因为你在生成新的进程来遍历子树。

你可能想要修改tree:walk/1函数,以便在成功遍历时返回原子值ok(我还将io:format/1替换为erlang:display,以便将值打印在单独的行上):

walk({Left, Value, Right}) ->
    spawn(tree, walk, [Left]),
    erlang:display(Value),
    spawn(tree, walk, [Right]),
    ok;
walk({}) -> continue.

这是相同函数的同步版本。我们使用递归而不是进程:

walk_sync({Left, Value, Right}) ->
    walk_sync(Left),
    erlang:display(Value),
    walk_sync(Right);
walk_sync({}) -> continue.
英文:

The function is indeed concurrent, as you are spawning new processes to walk the subtrees.

You might want to alter tree:walk/1 so that it returns the atom ok in the case of a successful walk (I also switch out io:format/1 with erlang:display so that values are printed on separate lines):

walk({Left, Value, Right}) ->
    spawn(tree,walk,[Left]),
    erlang:display(Value),
    spawn(tree,walk,[Right]),
    ok;
walk({}) -> continue.

Here is a synchronous version of the same function. Instead of processes, we use recursion:

walk_sync({Left, Value, Right}) ->
    walk_sync(Left),
    erlang:display(Value),
    walk_sync(Right);
walk_sync({}) -> continue.

huangapple
  • 本文由 发表于 2015年3月11日 03:41:01
  • 转载请务必保留本文链接:https://go.coder-hub.com/28972673.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定