Sort PHP array using bead algorithm
In "Brief Analysis of How to Sort Integer Arrays through PHP Classes", we introduce how to use PHP classes to sort arrays. So this article will introduce to you an interesting bead algorithm and use it to sort PHP arrays.
First of all, let me briefly introduce to you what is the abacus algorithm?
The bead algorithm, also called bead sorting, is a natural sorting algorithm developed by Joshua J. Arulanandham, Cristian S. Calude and Michael J. Dinneen in 2002, and was used in European theoretical computers. The algorithm was published in a press briefing of the European Association for Theoretical Computer Science (EATCS).
Both digital and analog hardware implementations of bead sorting can achieve O(n); however, implementations of this algorithm tend to be much slower in software and can only be used to sort lists of positive integers.
After a brief understanding of the algorithm, we directly code:
<?php function columns($uarr) { $n=$uarr; if (count($n) == 0) return array(); else if (count($n) == 1) return array_chunk($n[0], 1); array_unshift($uarr, NULL); $transpose = call_user_func_array('array_map', $uarr); return array_map('array_filter', $transpose); } function bead_sort($uarr) { foreach ($uarr as $e) $poles []= array_fill(0, $e, 1); return array_map('count', columns(columns($poles))); } echo '原始数组: '.' '; var_dump(array(5,3,1,3,8,7,4,1,1,3)); echo ' '.'珠排序后 : '.' '; var_dump(bead_sort(array(5,3,1,3,8,7,4,1,1,3)));
The running results are as follows:
In the above code, I will introduce you to several key functions:
1, array_unshift()
function: used to insert new elements into the array. The values of the new array will be inserted at the beginning of the array. The added elements are added as a whole, in the same order in the array as in the parameters. This function returns the number of elements in the array.
2, c
all_user_func_array
: Call the callback function and use an array parameter as the parameter of the callback function. The syntax is "call_user_func_array(callable $callback, array $param_arr): mixed
" means calling the first parameter as the callback function (callback), and passing the parameter array (param_arr) as the parameter of the callback function.
3, array_map
: Apply a callback function to each element of the array.
Finally, I would like to recommend to you the latest free course on our platform "Entering the World of PHP from 0"~ Come and learn!
The above is the detailed content of Sort PHP array using bead algorithm. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
