这次合并有什么问题?

时间:2010-06-29 22:35:20

标签: algorithm coldfusion mergesort

我正在尝试在Coldfusion中实现mergesort,但它正在吐出不正确的结果,代码:

<cffunction name="mergeSort" hint="Sorts arrays of structs">
<cfargument name="arr" type="Array" required="yes">

<cfif Arraylen(arr) LTE 1>
   <cfreturn arr />
</cfif>

<cfset left_ = ArrayNew(1)>
<cfset right_ = ArrayNew(1)>
<cfset mid_ = Int(Arraylen(arr) / 2)>

<cfloop index="i" from="1" to="#mid_#">
   <cfset arrayAppend(left_, arr[i])>
</cfloop>

<cfloop index="j" from="#mid_+1#" to="#ArrayLen(arr)#">
   <cfset arrayAppend(right_, arr[j])>
</cfloop>


<cfreturn merge( mergeSort(left_), mergeSort(right_) )>

</cffunction>



<cffunction name="merge" hint="Merges two arrays">
<cfargument name="left_" required="yes" type="Array">
<cfargument name="right_" required="yes" type="Array">

<cfset result = ArrayNew(1)>

<cfloop condition="ArrayLen(left_) GT 0 AND ArrayLen(right_) GT 0">
   <cfif left_[1].attr3 LTE right_[1].attr3>
       <cfset arrayAppend(result, left_[1])>
       <cfset arrayDeleteAt(left_, 1)>
   <cfelse>
       <cfset arrayAppend(result, right_[1])>
       <cfset arrayDeleteAt(right_, 1)>
   </cfif>
</cfloop>

<cfif ArrayLen(left_) GT 0>
   <cfloop array="#left_#" index="v">
       <cfset ArrayAppend(result, v)>
   </cfloop>
</cfif>

<cfif ArrayLen(right_) GT 0>
   <cfloop array="#right_#" index="v">
       <cfset ArrayAppend(result, v)>
   </cfloop>
</cfif>

<cfreturn result />

</cffunction>

它在名为“attr3”的结构键上对结构数组进行排序。会发生什么事情,它似乎正确地拆分列表,但然后继续将相同的列表附加到结果集。因此,例如,如果我将left_.attr3作为“Title”而将right_.attr3作为“Another”,则结果最终为“Title”,“Another”,“Another”,“Another”等等。

1 个答案:

答案 0 :(得分:4)

你看过How to sort an array of structs in ColdFusion吗?

btw,请将变量范围变为所有变量!

顺便说一下,您可以使用Java Join Two Arrays in ColdFusion

连接数组

顺便说一下,你可以使用mid_ = Arraylen(arr) \ 2作为整数div