如何计算xquery中变量的幂?

时间:2013-03-12 13:09:13

标签: xml xslt xquery

如果我需要计算一个变量“totalIPaddress”,其值为2 ^($ blocksize),那么xquery语句是什么?

<IPaddress>
<startIPaddress>192.168.1.1</startIPaddress>
<blocksize>4</blocksize>
</IPaddress>

3 个答案:

答案 0 :(得分:2)

这是一种特别有效的计算能力的方法 - 具有对数时间复杂度(O(log(N)):

declare function local:pow($x as xs:double , $n as xs:integer ) as xs:double
{
  if($n eq 0)
   then 1
   else
    (let $h := $n idiv 2,
         $halfResult := local:pow($x, $h)
      return
            if($n mod 2 eq 0)
              then $halfResult * $halfResult
              else $x * $halfResult * $halfResult
        )

};

local:pow(2,10)

产生预期的正确结果

1024

答案 1 :(得分:0)

除了数学:pow,最简单的方法就是硬编码:

(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536, 131072, 262144, 524288, 1048576, 2097152, 4194304, 8388608, 16777216, 33554432, 67108864, 134217728, 268435456, 536870912, 1073741824, 2147483648, 4294967296)[$blocksize + 1]

也适用于XPath 2。

答案 2 :(得分:0)

递归是你的朋友:

declare function f:two-to-the($n as xs:integer) as xs:integer {
  if ($n = 0) then 1 else 2 * f:two-to-the($n - 1)
};