Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Web Builder Zone:
Quicksort Algorithm – Difference Between PHP and JavaScript
Jun 16, 2010 @ 13:49:59

On the Web Builder Zone there's a quick article from Stoimen Popov showing a quicksort algorithm in both PHP and Javascript versions:

Let me show you one sorting algorithm, perhaps the most known of all them – the quick sort, implemented both on PHP and JavaScript. Although the code look similar between both languages, there are few differences, that show the importance of the syntax knowledge!

Most of the post is taken up with the two code examples - the PHP one sorting arrays with a for loop and a call to array_merge and the Javascript side pushing values into an array and calling "concat" on it to get the right values.

tagged: javascript quicksort algorithm snippet

Link:

Gustav Eklundh' sBlog:
Search Methods in PHP
Aug 01, 2008 @ 18:45:22

Gustav Eklundh has posted a whole series of search type implementations to his blog - here's the list so far:

He briefly explains each of the sort methods in each of the posts, sometimes with links to external sources (like Wikipedia) for more information on the method.

tagged: search method quicksort strand merge gnome

Link:

PHP-Coding-Practices.com:
How I Turned A Slow Array Sort Into A Quick One Using Quicksort Algorithm
Jun 08, 2007 @ 16:17:00

On the PHP-Coding-Practices site, there's a sort of case study posted showing how the author (Tim Koschuetzki) took a chunk of code that was slow at sorting an array and sped it up dramatically using the Quicksort Algorithm.

Today in the morning I had a very unusual programming job to do - or at least what is for me rather unusual. I was confronted with the question whether it is easy to implement the quicksort algorithmn to sort an array of arrays based on a key in the second-dimension of the array. Join me to find out.

The key to the transformation is an application of the Quicksort method that applies a filter to the elements in the array and places items to the right and left of the pivot point. To illustrate the point, he includes both the pre-quicksort code and post-quicksort.

tagged: quicksort algorithmn array sort tutorial quicksort algorithmn array sort tutorial

Link:

PHP-Coding-Practices.com:
How I Turned A Slow Array Sort Into A Quick One Using Quicksort Algorithm
Jun 08, 2007 @ 16:17:00

On the PHP-Coding-Practices site, there's a sort of case study posted showing how the author (Tim Koschuetzki) took a chunk of code that was slow at sorting an array and sped it up dramatically using the Quicksort Algorithm.

Today in the morning I had a very unusual programming job to do - or at least what is for me rather unusual. I was confronted with the question whether it is easy to implement the quicksort algorithmn to sort an array of arrays based on a key in the second-dimension of the array. Join me to find out.

The key to the transformation is an application of the Quicksort method that applies a filter to the elements in the array and places items to the right and left of the pivot point. To illustrate the point, he includes both the pre-quicksort code and post-quicksort.

tagged: quicksort algorithmn array sort tutorial quicksort algorithmn array sort tutorial

Link:


Trending Topics: