使用 XQuery 获取序列中重复次数最多的元素
我有一系列值。它们可以都是平等的……也可以不是。因此,通过 XQuery,我想获取序列中最常见的项目。
let $counter := 0, $index1 := 0
for $value in $sequence
if (count(index-of($value, $sequence)))
then
{
$counter := count(index-of($value, $sequence)) $index1 := index-of($value)
} else {}
我无法完成这项工作,所以我想我做错了什么。
预先感谢您能给我的任何帮助。
I've got a sequence of values. They can all be equal... or not. So with XQuery I want to get the most frequent item in the sequence.
let $counter := 0, $index1 := 0
for $value in $sequence
if (count(index-of($value, $sequence)))
then
{
$counter := count(index-of($value, $sequence)) $index1 := index-of($value)
} else {}
I can't make this work, so I suppose I'm doing something wrong.
Thanks in advance for any help you could give me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用:
更新,2015 年 12 月:
这明显更短,但可能不太高效:
可以为 XPath 3.1 构造最短的表达式:
甚至更短且可复制 - 使用单字符名称:
Use:
Update, Dec. 2015:
This is notably shorter, though may not be too-efficient:
The shortest expression can be constructed for XPath 3.1:
And even shorter and copyable -- using a one-character name:
您从过于迫切的角度来处理这个问题。
在 XQuery 中,您可以设置变量的值,但永远无法更改它们。
执行迭代类型算法的正确方法是使用递归函数:
但解决问题的更好方法是以非迭代方式描述问题。在这种情况下,对于序列中的所有不同值,您需要一个在任何不同值中出现最多次数的值。
前面的句子翻译成 XQuery 是
You are approaching this problem from too much of an imperative standpoint.
In XQuery you can set the values of variables, but you can never change them.
The correct way to do iterative-type algorithms is with a recursive function:
but a better way of approaching the problem is by describing the problem in a non-iterative way. In this case of all the distinct values in your sequence you want the one that appears maximum number of times of any distinct value.
The previous sentance translated into XQuery is