0

我想知道一个数字是否在 PARI/GP 列表中,但我不知道该怎么做,这是我的代码:

mylist = listcreate();

... here I add some numbers with  listput(mylist,XXXX)

/* How can I do the condition in the if... */
if(mynumber in mylist,print("SUCCESS"),print("ERROR"))

我正在从 Python 迁移到 PARI/GP 我的一些脚本,我迷失在那些基本的东西上,手册有点难以理解。谢谢!

4

1 回答 1

2

您可以测试给定值是否在列表、向量或列向量中,如下所示:

inList(list, value)=for(i=1,#list, if(list[i]==value, return(i))); 0

或者效率低下

inlist(list, value)=#select(n->n==value, list) > 0

你的例子看起来像

if(inList(mylist, mynumber), print("SUCCESS"), print("ERROR"))

但是,如果您要进行大量查询,则值得使用二进制搜索:

myset = Set(mylist);
if(setsearch(myset, mynumber), print("SUCCESS"), print("ERROR"))
于 2015-06-18T13:55:33.523 回答