gpt4 book ai didi

algorithm - xsl 中的自定义分组

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:04:13 24 4
gpt4 key购买 nike

您好,我遇到了一个问题,需要一种相当专业的分组,并且希望获得有关最佳方法的一些反馈。这是一些 xml:

<root>
<locations>
<location>
<address>123 4 st Smallville</address>
<number>1</number>
</location>
<location>
<address>432 1 st Metropolis</address>
<number>2</number>
</location>
</locations>
<insuranceCoverages>
<coverage>
<name>General Coverage</name>
<locationSplits>
<coverage>
<name>Building Coverage</name>
<locationNumber>1</locationNumber>
<clauses>
<coverage>
<name>Earthquake Exclusion</name>
</coverage>
</clauses>
</coverage>
</locationSplits>
</coverage>
<coverage>
<name>General Liability</name>
</coverage>
</insuranceCoverages>
</root>

我想做的是按位置将覆盖范围分组到一个相当平坦的层次结构中。像这样的东西:

┌Location 1
├┬Coverage "Building Coverage"
│└Coverage "Earthquake Exclusion"
├Location 2
├No Location
├┬Coverage "General Coverage"
│└Coverage "General Liability"

我当前的解决方案使用关于位置/位置的模板,并枚举覆盖范围列表以查找与当前位置匹配的位置编号。然而,由于该算法枚举了每个位置的所有覆盖范围,因此它是

O(nm)
where n = # locations + 1
m = # coverages

如果我的算法可以优化为仅遍历覆盖树一次,根据自身或其祖先的当前位置将每个覆盖放入一个集合中,然后打印出这些集合,我会更愿意。

O(n)
where n = # coverages

当然,如果有更有效的方法用 xsl 表达这一点,(可能用 xsl:for-each-group 指令?)我也有兴趣听听。

最佳答案

if there are more efficient ways of expressing this with xsl,

使用 XSLT 执行此操作的有效方法是使用 key 。这是一个简单的例子:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:key name="coverage-by-location" match="coverage" use="locationNumber" />

<xsl:template match="/root">
<xsl:copy>
<xsl:for-each select="locations/location">
<location number="{number}">
<xsl:for-each select="key('coverage-by-location', number)">
<coverage name="{name}"/>
</xsl:for-each>
</location>
</xsl:for-each>
</xsl:copy>
</xsl:template>

</xsl:stylesheet>

这仅遍历树的位置/位置分支,并使用由 <key> 创建的索引指令以选择与当前位置对应的覆盖范围。

向输出树添加“无位置”的另一个分支稍微有点棘手,但可以通过将键修改为:

<xsl:key name="coverage-by-location" match="coverage" use="string(locationNumber)" />

在这一点上,用一个模板来处理这两种覆盖会更方便,所以:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:key name="coverage-by-location" match="coverage" use="string(locationNumber)" />

<xsl:template match="/root">
<xsl:copy>
<xsl:apply-templates select="locations/location"/>
<no-location>
<xsl:apply-templates select="key('coverage-by-location', '')"/>
</no-location>
</xsl:copy>
</xsl:template>

<xsl:template match="location">
<location number="{number}">
<xsl:apply-templates select="key('coverage-by-location', number)"/>
</location>
</xsl:template>

<xsl:template match="coverage">
<coverage name="{name}"/>
</xsl:template>

</xsl:stylesheet>

将此应用于您的输入示例将返回:

<?xml version="1.0" encoding="UTF-8"?>
<root>
<location number="1">
<coverage name="Building Coverage"/>
</location>
<location number="2"/>
<no-location>
<coverage name="General Coverage"/>
<coverage name="Earthquake Exclusion"/>
<coverage name="General Liability"/>
</no-location>
</root>

这与您预期的结果有点不同,但您没有解释“地震排除”覆盖范围与位置 #1 的关联程度。


编辑:

As for the Earthquake exclusion, it is important for it to end up under the location 1 element because it is a child of another coverage at location 1.

在这种情况下,我认为最好将 key 更改为:

<xsl:key name="coverage-by-location" match="coverage" use="string(ancestor-or-self::coverage/locationNumber)" />

关于algorithm - xsl 中的自定义分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28731513/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com