我对Prolog还是很陌生,我正在尝试构建一个脚本,在其中可以使用Prolog生成随机字符串。到目前为止,我还没有很幸运。
我这样做的想法是生成所需的字符列表,根据列表的大小创建一个随机数,然后尝试从该列表中提取一个字符。这可以正常工作,但我还需要能够连接到一个变量,该变量显然一无所有。现在,我只是试图将字符串的大小限制为5个字符,但将来我会希望更复杂一些(例如5至8个字符)。
这是我到目前为止所拥有的:
generate :-
Output = '',
generate_random_string(Output, 0),
write(Output).
generate_random_string(Output, 5) :-
Characters = ['A', 'a', 'B', 'b', 'C', 'c', 'D', 'd', 'E', 'e', 'F', 'f', 'G', 'g'],
random(0, 14, RandomValue),
nth0(RandomValue, Characters, RandomCharacter),
append(RandomCharacter, Output, Concat),
Output = Concat.
generate_random_string(Output, CharNum) :-
CharNum \= 5,
Characters = ['A', 'a', 'B', 'b', 'C', 'c', 'D', 'd', 'E', 'e', 'F', 'f', 'G', 'g'],
random(0, 14, RandomValue),
nth0(RandomValue, Characters, RandomCharacter),
append(RandomCharacter, Output, Concat),
Count is CharNum + 1,
Output = Concat,
generate_random_string(Output, Count).
我相信这会绕过append调用,但我不确定为什么,尽管我确实知道它在第一次迭代时就中断了,并且给出了false的结果。任何对此的帮助将不胜感激。
答案 0 :(得分:4)
由于@PauloMoura在上一个答案中评论说foreach/3
可能不是可移植的,因为它不是ISO谓词,因此这是使用maplist/2
的更好的解决方案:
characters(['A', 'a', 'B', 'b', 'C', 'c', 'D', 'd', 'E', 'e', 'F', 'f', 'G', 'g']).
generate(L,N) :-
length(L,N),
characters(Char_list),
length(Char_list, N1),
maplist( random_char_generat(Char_list, N1), L ).
random_char_generat(Char_list, N, Char):- random(0, N, X), nth0(X, Char_list, Char ).
在以下列出的术语中,上述解决方案更好:
?- generate(L,5).
L = ['E', g, c, 'B', 'D'].
?- generate(L,8).
L = [g, g, f, d, 'E', a, g, b].
?- generate(L,N).
L = [],
N = 0 ;
L = [e],
N = 1 ;
L = [e, 'F'],
N = 2 ;
L = ['C', g, 'G'],
N = 3 ;
L = ['D', a, b, e],
N = 4 ;
L = ['F', 'E', 'G', f, b],
....
答案 1 :(得分:1)
因此,如注释中所建议,您应以这种方式使用atom_concat/3
:
generate :-
Output = 'abc',
generate_random_string(Output,Result,0),
write(Result).
generate_random_string(Output,Result,5):- !,
Characters = ['A', 'a', 'B', 'b', 'C', 'c', 'D', 'd', 'E', 'e', 'F', 'f', 'G', 'g'],
random(0, 14, RandomValue),
nth0(RandomValue, Characters, RandomCharacter),
atom_concat(RandomCharacter,Output,Result).
generate_random_string(Output,Result,CharNum) :-
CharNum \= 5,
Characters = ['A', 'a', 'B', 'b', 'C', 'c', 'D', 'd', 'E', 'e', 'F', 'f', 'G', 'g'],
random(0, 14, RandomValue),
nth0(RandomValue, Characters, RandomCharacter),
atom_concat(RandomCharacter,Output,Concat),
Count is CharNum + 1,
generate_random_string(Concat,Result,Count).
查询:
?- generate.
feFaaCabc
true
如您所见,如果您输入了一个字符串,并且想要在其中附加一些字符,程序将输出一个指定长度的字符串(在您的情况下为5+1
,因为您从0开始)加上长度输入字符串。
使用random_member/2
可以采用以下不同的模块化方法:
pick_random(_,0,L,L):- !.
pick_random(LC,I,SIn,SOut):-
I > 0,
random_member(R,LC),
atom_concat(SIn,R,Concat),
I1 is I-1,
pick_random(LC,I1,Concat,SOut).
random_string(Len,SIn,SOut):-
LC = ['A', 'a', 'B', 'b', 'C', 'c', 'D', 'd', 'E', 'e', 'F', 'f', 'G', 'g'],
string_length(SIn,Ls),
Len1 is Len - Ls,
pick_random(LC,Len1,SIn,SOut).
查询:
?- random_string(4,'gr',S).
S = grAd % note gr is in the string
?- random_string(4,'',S).
S = fdGb
从这个起点开始,很容易使字符串的长度也是随机的。
答案 2 :(得分:1)
这是一个更简单的解决方案:
characters(['A', 'a', 'B', 'b', 'C', 'c', 'D', 'd', 'E', 'e', 'F', 'f', 'G', 'g']).
generate(L,N) :-
length(L,N),
characters(Char_list),
N1 is N-1,
foreach( (between(0,N1,X), random(0, 14, RandomValue), nth0(RandomValue, Char_list, Char)) , nth0(X,L,Char) ).
请注意,上述解决方案将数字N用作参数,并生成一个N位的随机字符列表:
?- generate(L,5).
L = [f, e, 'C', 'B', 'A'].
?- generate(L,8).
L = [a, 'E', c, c, 'E', f, 'B', g].
?- generate(L,N).
L = [],
N = 0 ;
L = ['B'],
N = 1 ;
L = [c, 'F'],
N = 2 ;
L = ['E', g, 'C'],
N = 3 ;
L = ['C', c, 'F', 'D'],
N = 4 ;
L = [c, 'B', 'F', 'B', 'B'],
N = 5
....and goes on