Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
Joe_Krako #1
In serious need of a 2 dimensional quicksort
Hi,
My website used to just have 200 or so records to sort, now it's got like more
than 2000.
I'm in serious need of a 2 dimensional array quicksort.
The one at CFLib just does not work for me though.
Anyone know where I can get a quicksort? A bubble sort just doesn't cut it.
Thanks in advance,
Joe
Joe_Krako Guest
-
What's better/faster, passing around and manipulating lists or one-dimensional arrays? Should a CFC argument be a list or a one-dimensional array?
What's better/faster, passing around and manipulating lists or one-dimensional arrays? Should a CFC argument be a list or a one-dimensional array? -
2-Dimensional Array Question
This is my first time using an array. 1. My code seems to work but I need to return a count from each piece of the array (the number of each... -
Multi-dimensional Array
Hi, Array-Question: Suppose you have an array like: <? $invoices=$taxrate; $invoices=a number; ?> -
Two Dimensional Arrays
Hello all, Can anyone tell me how to get and assign the first dimension of a two dimensional array to another array? For example, I have a... -
turn xml into 2 dimensional array
Well, www.php.net seems utterly crashed. Does anyone know how to get an XML stream and turn it into a 2 dimensional array? -
jdeline #2
Re: In serious need of a 2 dimensional quicksort
You might consider copying your 2d array to a 1d array, using a pipe or other
character as a delimiter between array elements in a row. Then the CFLib.org
quicksort could be used, and once sorted, you could copy the array back to a 2d.
jdeline Guest



Reply With Quote

