Skip to Content
XSLT Cookbook
book

XSLT Cookbook

by Sal Mangano
December 2002
Intermediate to advanced
672 pages
16h 53m
English
O'Reilly Media, Inc.
Content preview from XSLT Cookbook

Performing a Level-Order Traversal

Problem

You want to order elements by increasing level (tree depth). In other words, you want to traverse the tree breadth first.

Solution

This form of traversal is tailor-made for using xsl:for-each along with xsl:sort:

<xsl:for-each select="//*">
     <xsl:sort select="count(ancestor::*)" data-type="number"/>
     <!--  process the current element -->
</xsl:for-each>

This recursive solution is longer and less obvious:

<xsl:template match="/*"> <xsl:call-template name="level-order"/> </xsl:template> <xsl:template name="level-order"> <xsl:param name="max-level" select="10"/> <xsl:param name="current-level" select="1"/> <xsl:choose> <xsl:when test="$current-depth &lt;= $max-level"> <!-- process the current level --> <xsl:call-template name="level-order-aux"> <xsl:with-param name="level" select="$current-level"/> <xsl:with-param name="actual-level" select="$current-level"/> </xsl:call-template> <!-- process the next level --> <xsl:call-template name="level-order"> <xsl:with-param name="current-level" select="$current-level + 1"/> </xsl:call-template> </xsl:when> </xsl:choose> </xsl:template> <xsl:template name="level-order-aux"> <xsl:param name="level" select="1"/> <xsl:param name="actual-level" select="1"/> <xsl:choose> <xsl:when test="$level = 1"> <!-- Process the current element here --> <!-- $actual-level is the number of the current level --> </xsl:when> <xsl:otherwise> <!-- Recursively descend to the next level on all children --> <xsl:for-each select="*"> ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

XSLT Cookbook, 2nd Edition

XSLT Cookbook, 2nd Edition

Sal Mangano
XSLT

XSLT

Doug Tidwell
Inside XSLT

Inside XSLT

Steven Holzner

Publisher Resources

ISBN: 0596003722Catalog PageErrata