[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message]

distance between elements and hierarchical order

Sergio Andreozzi sergio.andreozzi at cnaf.infn.it
Fri Dec 9 03:58:34 PST 2005


  distance between elements and hierarchical order
David Carlisle wrote:
> In the original problem I don't think you need to explictly iterate over
> the ancestor lists then use count and min, you just walk up the
> ancestors of x which are not ancestors of y , then up one level to the
> nearest common ancestor then down the ancestors of y that are not
> ancestors of x so the distance is
> 
> count($x-ancestors)+count($y-ancestors)+1-2*count($x-ancestors intersect $y-ancestors)
> 
> where x-ancestors is as in the posted code the ancestor-or-self:: axis
> from $x


the final solution for prob. no.2 should be this one then:

let $x := ...
     $y := ...

let $x-ancestors := $x/ancestor-or-self::element(),
     $y-ancestors := $y/ancestor-or-self::element()

return count($x-ancestors)+count($y-ancestors)+1-2*count($x-ancestors 
intersect $y-ancestors)

ex.1

let $x := (doc("test.xml")/S/A/B/F)[1],
     $y := (doc("test.xml")/S/A/B/C/G/H)[3]

result is 7

ex.2

let $x := (doc("test.xml")/S/A/B/F)[2],
     $y := (doc("test.xml")/S/A/B/C/G/H)[3]

result is 5

where test.xml is:

<S>
     <A>
         <B>
             <F>4</F>
             <C>
                 <D>3</D>
                 <E>5</E>
                 <G>
                     <H>3</H>
                 </G>
                 <G>
                     <H>2</H>
                 </G>
             </C>
         </B>
         <B>
	    <F>2</F>
	    <C>
	        <G>
	             <H>2</H>
	        </G>
	    </C>
         </B>
     </A>
</S>



thank you very much for your help.

	Kind regards, Sergio


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2007 All Rights Reserved.