4
私はmondial.sqlデータベースを使って国境を越えてある国から別の国へ移動することで、土地に到達可能なすべての国を探しています。それは再帰的に行われなければならず、シーケンスに参加し、すでに見つかった国を除外できるようになると私は考えていたオンラインの関数をいくつか見つけました。XQueryで再帰を処理する方法は?
除外対象の国が適切に処理されているように見えるにもかかわらず、問題はループ状になります。だから私の考えは、すべての可能な国が見つかったら再帰を止める何らかの方法で基底ケースを定義しなければならないかもしれないということです。 XQueryでこれを達成する方法は? $reachedCountries
と
(:functx.value-union and is-value-in-sequence were found at http://www.xqueryfunctions.com/xq/:)
declare namespace functx = "http://www.functx.com";
declare function functx:value-union
($arg1 as xs:anyAtomicType* ,
$arg2 as xs:anyAtomicType*) as xs:anyAtomicType* {
distinct-values(($arg1, $arg2))
};
declare function functx:is-value-in-sequence
($value as xs:anyAtomicType? ,
$seq as xs:anyAtomicType*) as xs:boolean {
$value = $seq
} ;
(:Recursive function for finding reachable countries:)
declare function local:findReachable($countries, $country, $reachedCountries) {
let $reachableCountries := $countries[@car_code = $country/border/@country]
for $c in $reachableCountries
where not(functx:is-value-in-sequence($c, $reachedCountries))
return functx:value-union($c, local:findReachable($countries, $c, functx:value-union($reachableCountries,
$reachedCountries)))
};
let $countries := //country
let $startingCountry := //country[@car_code = 'S']
return local:findReachable($countries, $startingCountry, $startingCountry)