码迷,mamicode.com
首页 > 其他好文 > 详细

Erlang 两层循环控制

时间:2014-08-23 02:31:50      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:os   new   res   函数   height   循环   r   ls   参数   

1、举例,比方说我想取出横坐标0-900 纵坐标0-400的坐标范围:
do_all_pos()->
do_all_pos([],0,0).

do_all_pos(Result,Length,Height)when Length<900 andalso Height=<400->
NewResult=[{Length,Height}|Result],
NewLength=Length+100,
do_all_pos(NewResult,NewLength,Height);
do_all_pos(Result,Length,Height) when Length=:=900 andalso Height<400->
NewResult=[{Length,Height}|Result],
NewHeight=Height+100,
NewLength=0,
do_all_pos(NewResult,NewLength,NewHeight);
do_all_pos(Result,Length,Height) when Length=:=900 andalso Height=:=400->
[{Length,Height}|Result].

2、如果是三维坐标求法,则直接在外层调用,不建议用三个函数参数变量来控制

Erlang 两层循环控制

标签:os   new   res   函数   height   循环   r   ls   参数   

原文地址:http://my.oschina.net/u/932809/blog/305802

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!