主题:各位兄弟,我想请教下以下的函数f_jqx有什么作用,一般应用在哪里呢
f_jqx 返回值 boolean
参数1 value integer b
参数2 value unsignedlong w
正文:
boolean a
if b=0 and w=0 then return true
f_btdw(b,w)
a=f_bit(g_q[b+1],w)
return a
----------------------------------------------------------------
以上的涉及到f_btdw函数代码如下,具体没返回值
参数1 reference integer b
参数2 reference unsignedlogn w
正文:
int c
c = mod(b,4)
b = b/4
w = w * 256^c
-----------------------------------------------------------
以上的涉及到f_bit函数代码如下,返回值 boolean
参数1 value unsignedlong c
参数2 value unsignedlong n
正文
boolean a=false
if n<>2^31 then c=mod(c,2*n)
c=c/n
if c=1 then a=true
return a
-----------------------------------------------------
上面第一个函数f_jqx一般有什么作用呢....一般应用在哪里呢,请各位兄弟能讲解一下,再此感谢兄弟了!
参数1 value integer b
参数2 value unsignedlong w
正文:
boolean a
if b=0 and w=0 then return true
f_btdw(b,w)
a=f_bit(g_q[b+1],w)
return a
----------------------------------------------------------------
以上的涉及到f_btdw函数代码如下,具体没返回值
参数1 reference integer b
参数2 reference unsignedlogn w
正文:
int c
c = mod(b,4)
b = b/4
w = w * 256^c
-----------------------------------------------------------
以上的涉及到f_bit函数代码如下,返回值 boolean
参数1 value unsignedlong c
参数2 value unsignedlong n
正文
boolean a=false
if n<>2^31 then c=mod(c,2*n)
c=c/n
if c=1 then a=true
return a
-----------------------------------------------------
上面第一个函数f_jqx一般有什么作用呢....一般应用在哪里呢,请各位兄弟能讲解一下,再此感谢兄弟了!